Skip to content

Instantly share code, notes, and snippets.

@wwgist
Created June 11, 2013 16:45
Show Gist options
  • Save wwgist/5758500 to your computer and use it in GitHub Desktop.
Save wwgist/5758500 to your computer and use it in GitHub Desktop.
JQUERY: custom selector example
$.extend($.expr[':'], {
over100pixels: function(a) {
return $(a).height() > 100;
}
});
$('.box:over100pixels').click(function() {
alert('Элемент, который вы потревожили своим кликом, в высоту более 100 пикселов');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment