vote up 2 vote down star
2

I'm currently attempting to disable a link using the following jQuery selector:

$("a[href$=/sites/abcd/sectors]").removeAttr("href");

The problem is that sometimes the href might not always be lower case on the page. When this happens the selector no longer matches.

Does anyone know how to get around this? Can I change the behaviour this once to ignore case?

flag

Are you using the latest version of jQuery? Because I just tested that selector in FF with 1.3.2 on a page with both uppercase HREF and lowercase href, and it matched both every time. What browser are you getting that problem on? – cdmckay Mar 6 at 21:03
jQuery 1.3.2 with IE 7 - just double-checked and problem is still happening. – Alex Angas Mar 9 at 10:07

2 Answers

vote up 1 vote down check

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.

$('a').each(function(i,n) {
    var href = $(n).attr("href");
    href = href.toLowerCase();
    if (href.endsWith('/sites/abcd/sectors'))
        $(n).removeAttr('href');
});

You would have to figure out your own endsWith logic.

link|flag
Thanks, that worked well. I used a regex for the endsWith. By the way, toLower() should be toLowerCase(). – Alex Angas Mar 9 at 10:56
Ah, thanks. I did this from memory and forgot a chunk. I've updated it. – EndangeredMassa Mar 9 at 17:10
vote up 2 vote down

jQuery was built to be extended. You can correct it or add your own type of case-insensitive selector.

Rick Strahl: Using jQuery to search Content and creating custom Selector Filters

link|flag
Good point. A custom selector would work here as well. – EndangeredMassa Mar 9 at 17:12

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.