Created
September 27, 2011 18:10
-
-
Save ariefbayu/1245790 to your computer and use it in GitHub Desktop.
Custom JQuery Selector
This file contains 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
//taken from: http://stackoverflow.com/questions/182630/jquery-tips-and-tricks/382922#382922 | |
$.extend($.expr[":"], { | |
over100pixels: function (e) | |
{ | |
return $(e).height() > 100; | |
} | |
}); | |
$(".box:over100pixels").click(function () | |
{ | |
//do whatever you want with it | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment