User Gary - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T12:25:18Z http://stackoverflow.com/feeds/user/122879 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/187537/is-there-a-case-insensitive-jquery-contains-selector/994213#994213 2 Answer by Gary for Is there a case insensitive jQuery :contains selector? Gary 2009-06-15T01:20:02Z 2009-06-15T01:20:02Z <pre><code>jQuery.expr[':'].contains = function(a,i,m){ return jQuery(a).text().toUpperCase().indexOf(m[3].toUpperCase())&gt;=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>