I have anchor tag like this... I need to select it!

<a href="#" class="foo bar" rel="123">...</a>

I need to write selector that selects anchor that have class like foo bar and rel like 123.

Is it possible with jQuery? Thanks in advice.

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

You can use something like:

$('a.foo.bar[rel="123"]')
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.