I need to find which event handlers are registered over an object.
For example:
$(\"#el\").click(function() {...});
$(\"#el\").mouseover(function() {
Another way to do it is to just use jQuery to grab the element, then go through actual Javascript to get and set and play with the event handlers. For instance:
var oldEventHandler = $('#element')[0].onclick;
// Remove event handler
$('#element')[0].onclick = null;
// Switch it back
$('#element')[0].onclick = oldEventHandler;