Skip to content

Instantly share code, notes, and snippets.

@vongruenigen
Created December 23, 2011 16:23
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 vongruenigen/1514635 to your computer and use it in GitHub Desktop.
Save vongruenigen/1514635 to your computer and use it in GitHub Desktop.
jquery selector
$.extend($.expr[':'], {
over100pixels: function(a) {
return $(a).height() > 100;
}
});
$('.box:over100pixels').click(function() {
alert('The element you clicked is over 100 pixels high');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment