Skip to content

Instantly share code, notes, and snippets.

@mturac
Created October 10, 2012 07:49
Show Gist options
  • Save mturac/3863851 to your computer and use it in GitHub Desktop.
Save mturac/3863851 to your computer and use it in GitHub Desktop.
jQuery case insensitive contains
jQuery.expr[':'].iContains = function(a, i, m) {
return jQuery(a).text().toUpperCase()
.indexOf(m[3].toUpperCase()) >= 0;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment