Created
December 18, 2009 16:56
-
-
Save jakearchibald/259609 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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