vote up 0 vote down star

Can you auto detect a hyperlink in HTML,JavaScript or Objective C?

flag
What kind of hyperlink? Are you looking for just a URL or an <a> tag in html, or both? – Dave DeLong Oct 9 at 1:03
Im looking for any URL typed. example.com www.foo.com. i want it to change into a clickable link while editing – timothy5216 Oct 9 at 1:49

1 Answer

vote up 2 vote down

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');

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.