How do I use jQuery to ignore case when selecting? - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T13:45:11Zhttp://stackoverflow.com/feeds/question/619621http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/619621/how-do-i-use-jquery-to-ignore-case-when-selecting2How do I use jQuery to ignore case when selecting?Alex Angas2009-03-06T17:05:49Z2009-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#6196381Answer by EndangeredMassa for How do I use jQuery to ignore case when selecting?EndangeredMassa2009-03-06T17:11:01Z2009-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#6203652Answer by Josh Stodola for How do I use jQuery to ignore case when selecting?Josh Stodola2009-03-06T20:49:17Z2009-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>