Is there a case insensitive jQuery :contains selector? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-09T05:19:13Z http://stackoverflow.com/feeds/question/187537 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/187537/is-there-a-case-insensitive-jquery-contains-selector 8 Is there a case insensitive jQuery :contains selector? Pat 2008-10-09T14:30:19Z 2009-09-14T11:03:07Z <p>Is there a case insensitive version of the <a href="http://docs.jquery.com/Selectors/contains" rel="nofollow">:contains</a> jQuery selector or should I do the work manually by looping over all elements and comparing their .text() to my string?</p> http://stackoverflow.com/questions/187537/is-there-a-case-insensitive-jquery-contains-selector/187557#187557 19 Answer by Pat for Is there a case insensitive jQuery :contains selector? Pat 2008-10-09T14:37:24Z 2009-09-14T11:03:07Z <p>What I ended up doing is (after some googling) :</p> <pre><code>jQuery.extend( jQuery.expr[':'], { Contains : "jQuery(a).text().toUpperCase().indexOf(m[3].toUpperCase())&gt;=0" }); </code></pre> <p>This will extend jquery to have a :Contains selector that is case insensitive, the :contains selector remains unchanged.</p> <p>Edit: Apparently accessing the DOM directly by using</p> <pre><code>(a.textContent || a.innerText || "") </code></pre> <p>instead of </p> <pre><code>jQuery(a).text() </code></pre> <p>In the previous expression speeds it up considerably so try at your own risk. (see @John 's question)</p> http://stackoverflow.com/questions/187537/is-there-a-case-insensitive-jquery-contains-selector/190183#190183 7 Answer by Alexander Prokofyev for Is there a case insensitive jQuery :contains selector? Alexander Prokofyev 2008-10-10T05:06:30Z 2008-10-10T05:06:30Z <p>If someone (like me) is interested what do <em>a</em> and <em>m[3]</em> mean in <em>Contains</em> definition.</p> <p><hr /></p> <p><strong>KEY/LEGEND: Params made available by jQuery for use in the selector definitions:</strong> </p> <p><em>r</em> = jQuery array of elements being scrutinised. (eg: <em>r.length</em> = Number of elements) </p> <p><em>i</em> = index of element currently under scrutiny, within array <em>r</em>. </p> <p><em>a</em> = element currently under scrutiny. Selector statement must return true to include it in its matched results. </p> <p><em>m[2]</em> = nodeName or * that we a looking for (left of colon). </p> <p><em>m[3]</em> = param passed into the :selector(param). Typically an index number, as in <em>:nth-of-type(5)</em>, or a string, as in <em>:color(blue)</em>.</p> http://stackoverflow.com/questions/187537/is-there-a-case-insensitive-jquery-contains-selector/783874#783874 15 Answer by unknown (yahoo) for Is there a case insensitive jQuery :contains selector? unknown (yahoo) 2009-04-23T22:49:50Z 2009-04-23T22:49:50Z <p>As of jQuery 1.3, this method is deprecated. To get this to work it needs to be defined as a function:</p> <pre><code>jQuery.expr[':'].Contains = function(a,i,m){ return jQuery(a).text().toUpperCase().indexOf(m[3].toUpperCase())&gt;=0; }; </code></pre> 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> http://stackoverflow.com/questions/187537/is-there-a-case-insensitive-jquery-contains-selector/1407353#1407353 0 Answer by John for Is there a case insensitive jQuery :contains selector? John 2009-09-10T19:49:40Z 2009-09-10T20:08:05Z <p>I've moved my question to: <a href="http://stackoverflow.com/questions/1407434/is-there-anyway-to-speed-up-this-solution-for-a-case-insensitive-jquery-contains">http://stackoverflow.com/questions/1407434/is-there-anyway-to-speed-up-this-solution-for-a-case-insensitive-jquery-contains</a></p>