Skip to content

Instantly share code, notes, and snippets.

@terkel
Created September 30, 2011 15:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save terkel/1254045 to your computer and use it in GitHub Desktop.
Save terkel/1254045 to your computer and use it in GitHub Desktop.
CSS4 :matches selector for jQuery
// http://twitter.com/padolsey/status/119790781417537536
$.expr[':'].matches = (function (_) {
return function (el, i ,m) {
return !!_(m[3]||'*',[el])[0];
};
}($.find.matches));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment