This is a challenge for any Javascript/jQuery ninjas out there:
What is the best way (using aforementioned languages), to find all of the links in an HTML document and return them all?
In other words, a function that like this - findLinks(document.html.innerHTML) that would return all links found in that HTML.
Thanks,
DLiKS
<a>tag's href or plain text that is formated like URL also?document.html.innerHTML? So obliterate a traversable DOM in favor of its html string representation that you then have to parse?