Taggar > filter

Create your own jQuery filters

Ever needed some custom filters with jQuery? Its easy to do yourself.

The "syntax" is simply this.

$.expr[':'].FILTERNAME = function(el, i, match, array) {
  // Do your filterstuff here!
  // return true on success
};