Skip to content

Instantly share code, notes, and snippets.

@jenter
Last active August 29, 2015 14:16
Show Gist options
  • Save jenter/06fadcc8c19e94ae8323 to your computer and use it in GitHub Desktop.
Save jenter/06fadcc8c19e94ae8323 to your computer and use it in GitHub Desktop.
// normal selector
$('.testelement .something').click(function(e) {
console.log('this is clicked');
});
// could be improved by storing as a variable
var something = $('.testelement .something');
something.click(function(e) {
console.log('this is clicked');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment