Skip to content

Instantly share code, notes, and snippets.

@dustintheweb
Created August 20, 2013 20:41
Show Gist options
  • Save dustintheweb/6286999 to your computer and use it in GitHub Desktop.
Save dustintheweb/6286999 to your computer and use it in GitHub Desktop.
Delegate Event Syntax / Example
$services.on('click','.sub-columns a',function(){
// stuff
});
$someVariable.on('someevent','.classtarget',function(){
// stuff
});
// used for targeting specific events & classes
// more optimal than a dom crawl
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment