Skip to content

Instantly share code, notes, and snippets.

@jmonterroso
Created April 14, 2015 15:35
Show Gist options
  • Save jmonterroso/ffc5c3096f202768feb9 to your computer and use it in GitHub Desktop.
Save jmonterroso/ffc5c3096f202768feb9 to your computer and use it in GitHub Desktop.
jQuery Attached Events
("#foo").on({
click: function(){ alert("Hello") },
mouseout: function(){ alert("World") }
});​​​
// Lookup events for this particular Element
​$._data( $("#foo")[0], "events" );
$._data($("#button1").get(0),"events")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment