Given this HTML:

<div class="OpenIDSelector">some text</div>

Why does this JQuery selector match it on some browsers and some pages, but not on others?

$('.OpenIdSelector')

NOTE: I ran into this problem and solved it myself, but it was annoying and I didn't find it on StackOverflow already, so I'm posting it as a Q&A pair so someone else won't waste an hour like I did.

link|improve this question

75% accept rate
1  
thanks for posting this. and it's a really clever idea to complete the SO knowledgebase. – Anurag Apr 5 '10 at 18:14
I can imagine the hours of frustration if I ran into this issue... thanks for potentially saving me! +1 – rmeador Apr 5 '10 at 18:39
yeah, they are case sensitive, but sometimes the browser not/ – spielersun Apr 6 '10 at 3:27
Now u have a change to accept your answer in your own question. :D Thanks for this tip. – sv_in Apr 6 '10 at 7:03
feedback

1 Answer

up vote 15 down vote accepted

Turns out JQuery's class selector uses the new javascript method getElementsByClassName if the browser supports it. This method is case-insensitive on quirks-mode pages, and case-sensitive on non-quirksmode (aka standards-compliant) pages. Sure, it's usually obvious that the cases are different, but when the text is stuck in the middle of a long, complex selector it was hard to see. Apparently there are lots of case-sensitive differences between standards and quirks to watch out for.

Moral of the story: match case of everything in your HTML (element names, CSS classes, etc.) because you never know when a change to a browser or standard or library might invalidate your assumption about case-insensitivity.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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