Skip to content

Instantly share code, notes, and snippets.

@ariefbayu
Created September 27, 2011 18:10
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 ariefbayu/1245790 to your computer and use it in GitHub Desktop.
Save ariefbayu/1245790 to your computer and use it in GitHub Desktop.
Custom JQuery Selector
//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