$.extend($.expr[':'], { over100pixels: function(a) { return $(a).height() > 100; } }); // http://www.sharejs.com/codes/ $('.box:over100pixels').click(function() { alert('The element you clicked is over 100 pixels high'); }); //javascript/8797