fires when the user clicks on an item of the list attached to the popup
id | string|number | the id of the clicked item of the list |
myPop.attachEvent("onClick", function(id){
console.log("You have clicked on the item with id="+id);
});
Back to top