User Gary - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T12:25:18Zhttp://stackoverflow.com/feeds/user/122879http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/187537/is-there-a-case-insensitive-jquery-contains-selector/994213#9942132Answer by Gary for Is there a case insensitive jQuery :contains selector?Gary2009-06-15T01:20:02Z2009-06-15T01:20:02Z<pre><code>jQuery.expr[':'].contains = function(a,i,m){
return jQuery(a).text().toUpperCase().indexOf(m[3].toUpperCase())>=0;
};
</code></pre>
<p>The update code works great in 1.3, but "contains" should be lower case on the first letter unlike the previous example. </p>