Skip to content

Instantly share code, notes, and snippets.

@tsevdos
Created January 2, 2012 09:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tsevdos/1550020 to your computer and use it in GitHub Desktop.
Save tsevdos/1550020 to your computer and use it in GitHub Desktop.
jQuery tips: Specify a context
$('h1', 'div#posts'); //using jQuery wrapper as context
$('h1', 'body'); // using an expression
$('input', document.form[0]); // using a DOM reference
$('h1', 'div#posts'); //using jQuery wrapper as context
$('h1', 'body'); // using an expression
$('input', document.form[0]); // using a DOM reference
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment