Reputation: 281
Can you auto detect a hyperlink in HTML,JavaScript or Objective C?
Upvotes: 0
Views: 451
Reputation: 168
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');
Upvotes: 3