Can you auto detect a hyperlink in HTML,JavaScript or Objective C?
+2
A:
A hyperlink is part of the html spec.
<a href="whoa">blah</a>
In any language I'd do an xquery search in the DOM object to find all hyperlinks.
getElementsByTagName('a');
Phillip Jacobs
2009-10-09 01:13:59