$.extend($.expr[":"], {over100pixels: function(a) {return $(a).height() > 100;}});$(".box:over100pixels").click(function() {alert("The element you clicked is over 100 pixels high");});