If we know that we can use

var link = $('a[href="http://google.com"]');

when we want to find a link with specified href attribute, and also

var link = $('a[rel="myrel"]');

when we want to find a link with specified rel attribute, how can we combine those two attributes so that is possible to find a link with a specified href AND rel in same time?

I have tried with

var link = $("a[rel='myrel', href='http://google.com']");

and

var link = $("a[rel='myrel'][href='http://google.com']");

and it didn't worked

link|improve this question

5  
The last one should work: jsfiddle.net/fkling/LYRtr – Felix Kling Dec 9 '11 at 17:53
the last one works, try it here js fiddle – Kamran Ali Dec 9 '11 at 17:55
feedback

5 Answers

up vote 1 down vote accepted
var link = $('a[rel="myrel"][href="http://google.com"]');

This should work fine.

Here is a demo: http://jsfiddle.net/ScxTV/

link|improve this answer
2  
I'd reverse the quotes though. Double-quotes are for HTML attribute values, and single-quotes for JavaScript strings. (That's my preference.) – Šime Vidas Dec 9 '11 at 17:54
My preference too. – Jasper Dec 9 '11 at 17:59
feedback

Your second example should work. Look at this fiddle.

<a href='http://thoughtresults.com' rel='nofollow'>Thought Results</a>
<a href='http:/www.google.com'>Google</a>

// This alerts 1
alert($('a[href=http://thoughtresults.com][rel=nofollow]').length);
link|improve this answer
feedback

something else might be wrong its working here

http://jsfiddle.net/NquxJ/

link|improve this answer
feedback

You should use var link = $('a[rel="myrel"][href="http://google.com"]'); instead.

link|improve this answer
feedback

Your last code should work!

var link = $("a[rel='myrel'][href='http://google.com']");

Why not? Try on console. Should work.

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.