I have a listener for click events, from which I need to exclude some elements.
Now my list is growing, so I'm looking for the best way to "stratify" several elements in the selector.
This is what I have:
$(document).on('click tap', function(event) {
if ($(event.target).closest('div:jqmData(panel="popover")').length > 0 ||
$(event.target).closest('div.pop_menuBox').length > 0 ||
$(event.target).closest('.toggle_popover').length > 0 ) ||
$(event.target).closest('.ui-selectmenu').length > 0 {
return;
}
});
Is there a better way to exclude these elements?
Thanks for the help!
source
share