Is there a javascript way of determining if an object implements the 'HTMLAnchorElement' interface? When I do typeOf(someVariable) it returns 'object'. Can I take that a step further and verify the type implements the 'HTMLAnchorElement' interface? Seems like it would be simple enough but I can't find any examples. Any help or sample code would be appreciated. Thanks!

link|improve this question

67% accept rate
feedback

1 Answer

up vote 3 down vote accepted

You can use the instanceof operator.

Example:

var a = document.links[0];
alert(a instanceof HTMLAnchorElement); // true if there's a link in the document

Note that IE7- doesn't define the HTMLAnchorElement object. As a fallback, you can check for the tagName or nodeName property of a supposed element.

link|improve this answer
+1 for tagName or nodeName. – Anurag Feb 14 at 20:10
lol yes I thought of this when I went to lunch. Sometimes a break is all we need. Thanks so much for the response. – Hcabnettek Feb 14 at 20:36
feedback

Your Answer

 
or
required, but never shown

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