Skip to content

Instantly share code, notes, and snippets.

@jlarrigan
Created April 12, 2012 12:33
Show Gist options
  • Save jlarrigan/2366931 to your computer and use it in GitHub Desktop.
Save jlarrigan/2366931 to your computer and use it in GitHub Desktop.
Access elements
$('selector')
var messagePara = $('#message');
var linkList = $('a');
var subMenu = $('.submenu').hide();
var subTag = $('#navBar a');
var childSel = $('body > p');
var adjacentSib = $('h2 + div');
var attributeSel = $('img[alt]');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment