vote up 0 vote down star

Here

Is it a deprecated selector?

flag

40% accept rate

4 Answers

vote up 1 vote down check

It's an attribute selector that will find all <img> elements with a rel attribute equal to the value to the right of the = sign.

And yes, the @ portion was deprecated as of jQuery 1.2 and removed completely in 1.3. Now you'd just use "img[rel=...]".

link|flag
vote up 0 vote down

From jQuery selectors:

Note: In jQuery 1.3 [@attr] style selectors were removed (they were previously deprecated in jQuery 1.2). Simply remove the '@' symbol from your selectors in order to make them work again.

link|flag
vote up 0 vote down

@ used to be required in attribute selectors, but no longer in jQuery 1.2 + and removed in jQuery 1.3

link|flag
vote up 0 vote down

It was deprecated in version 1.2 and removed in version 1.3.

From the jQuery selector documentation

Note: In jQuery 1.3 [@attr] style selectors were removed (they were previously deprecated in jQuery 1.2). Simply remove the '@' symbol from your selectors in order to make them work again.

link|flag

Your Answer

Get an OpenID
or

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