Skip to content

Instantly share code, notes, and snippets.

@atleastimtrying
Created March 14, 2013 17:49
Show Gist options
  • Save atleastimtrying/5163497 to your computer and use it in GitHub Desktop.
Save atleastimtrying/5163497 to your computer and use it in GitHub Desktop.
how on delegates
var clicky = function(event){
$(event.currentTarget).addClass('stupid');
};
$('.container').on({
click: clicky,
mouseover: clicky
}, '.child');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment