Skip to content

Instantly share code, notes, and snippets.

@jakearchibald
Created December 18, 2009 16:56
Show Gist options
  • Save jakearchibald/259609 to your computer and use it in GitHub Desktop.
Save jakearchibald/259609 to your computer and use it in GitHub Desktop.
// get images with a width greater than 320
glow('img').filter(function () {
return glow(this).width() > 320;
});
// get a definition term
var term = glow('#myDefs dt:first-child');
// get the next dt
term.next('dt');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment