I have such an anchor tag, and I need to choose it!
<a href="#" class="foo bar" rel="123">...</a>
Is it possible when jQuery will write a selector that selects a binding with a class like foo bar and rel like 123 ?
foo bar
123
You can use something like:
$('a.foo.bar[rel="123"]')