We use jQuery to parse some HTML. I then need to traverse that document and find some elements. Among the elements I need to find, there are the <link> elements.
This works perfectly well to extract all the <a> elements:
$(string).find("a")
but this doesn't work to extract the <link> elements :
$(string).find("link")
The string parameter is the html content (e.g. received on a request).
Any idea why? (I guess that the find only applies to the <body> elements). Also, any idea on how to actually extract these <link> elements?

stringvariable? – BoltClock♦ Jun 20 '11 at 20:38stringa dump of HTML you'd like to parse through? – Brad Christie Jun 20 '11 at 20:38$('link')works fine in a broad sense, so that doesn't seem to be an issue. – josh.trow Jun 20 '11 at 20:38