How do I use jQuery to ignore case when selecting? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T13:45:11Z http://stackoverflow.com/feeds/question/619621 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/619621/how-do-i-use-jquery-to-ignore-case-when-selecting 2 How do I use jQuery to ignore case when selecting? Alex Angas 2009-03-06T17:05:49Z 2009-03-09T17:10:37Z <p>I'm currently attempting to disable a link using the following jQuery selector:</p> <pre><code>$("a[href$=/sites/abcd/sectors]").removeAttr("href"); </code></pre> <p>The problem is that sometimes the href might not always be lower case on the page. When this happens the selector no longer matches.</p> <p>Does anyone know how to get around this? Can I change the behaviour this once to ignore case?</p> http://stackoverflow.com/questions/619621/how-do-i-use-jquery-to-ignore-case-when-selecting/619638#619638 1 Answer by EndangeredMassa for How do I use jQuery to ignore case when selecting? EndangeredMassa 2009-03-06T17:11:01Z 2009-03-09T17:10:37Z <p>I ran into this myself. I switched the logic a bit to allow me to compare it without case. It requires a little more work, but at least it works.</p> <pre><code>$('a').each(function(i,n) { var href = $(n).attr("href"); href = href.toLowerCase(); if (href.endsWith('/sites/abcd/sectors')) $(n).removeAttr('href'); }); </code></pre> <p>You would have to figure out your own <code>endsWith</code> logic.</p> http://stackoverflow.com/questions/619621/how-do-i-use-jquery-to-ignore-case-when-selecting/620365#620365 2 Answer by Josh Stodola for How do I use jQuery to ignore case when selecting? Josh Stodola 2009-03-06T20:49:17Z 2009-03-06T20:49:17Z <p>jQuery was built to be extended. You can correct it or add your own type of case-insensitive selector.</p> <p><a href="http://www.west-wind.com/weblog/posts/519980.aspx" rel="nofollow">Rick Strahl: Using jQuery to search Content and creating custom Selector Filters</a></p>