[jQuery] Using 1.3 this: [class!=whatever] doesn't work.
I'm working on a project at the moment and this [class!=whatever] has
stopped working.
In 1.2.6 I could use this fine, but in 1.3 it doesn't work.
For example, if I have two links:
<a href="#">Link</a>
and
<a href="#" class="whatever">Link</a>
Using a click function like this:
$('a[class!=whatever]').click(function(){ //do something });
Doesn't work. The function wont fire on either.
Is this just a slip up or is it for an actual reason?
Cheers,
Will