Since, upgrading to JQuery 1.5, the following selector no longer works:

var selectedTab = $('div.menu > ul > li > a[href=service.html]');

The error message is:

uncaught exception: Syntax error, unrecognized expression: [href=service.html]

Is this a bug in the latest version of JQuery or (much more likely) a dormant bug in my code?

link|improve this question

48% accept rate
1  
I think it's a dormant bug, as this was the preferred coding standard since 1.3, if I'm not mistaken. 1.3 & 1.4 was just way more lenient in that regard. – Anriëtte Combrink Feb 3 '11 at 19:57
feedback

1 Answer

up vote 10 down vote accepted

You need to quote the value:

$('div.menu > ul > li > a[href="service.html"]')
link|improve this answer
You're absolutely right, thanks – Don Feb 3 '11 at 19:30
feedback

Your Answer

 
or
required, but never shown

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