Guest User

Untitled

a guest
May 21st, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. // Bind up a couple of event handlers
  2. $("#foo").on({
  3. click: function(){ alert("Hello") },
  4. mouseout: function(){ alert("World") }
  5. });
  6.  
  7. // Lookup events for this particular Element
  8. $._data( $("#foo")[0], "events" );
Add Comment
Please, Sign In to add comment