Skip to content

Instantly share code, notes, and snippets.

@michaelbramwell
Last active December 9, 2015 21:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save michaelbramwell/4334267 to your computer and use it in GitHub Desktop.
Save michaelbramwell/4334267 to your computer and use it in GitHub Desktop.
jQuery icontains extension. :contains('') lowercase alt
jQuery.expr[':'].icontains = function (a, i, m) {
///<summary>Extend jQuery with case insentive contains selector</summary>
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