Skip to content

Instantly share code, notes, and snippets.

@emphaticsunshine
Created August 14, 2012 01:50
Show Gist options
  • Select an option

  • Save emphaticsunshine/3345664 to your computer and use it in GitHub Desktop.

Select an option

Save emphaticsunshine/3345664 to your computer and use it in GitHub Desktop.
Event delegation
// older way in jquery
$('ul').delegate('li','click',function(){
// do something
});
//newer way
$("ul").on("click","li",function(){
// do something
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment