You can use jQuery.data("events") . If you know the class or selector identifier, use:
$(selector).data("events");
If you want to search the entire document, follow these steps:
$("*").each(function(index, el){
if($(el).data("events") != undefined){
}
});
DEMO: http://jsfiddle.net/dirtyd77/SLGdE/3/
Hope this helps and let me know if you have any questions!
source
share