I know that in DOM, the Document object has the method getElementsByTagName().

Why is this operation not defined on any particular Node? Suppose I have a Node object, and I want to find a particular child of that Node by name. Do I really have to implement my own method to traverse all its children until I find the one with that name? (I am not using XPath.) Sounds like a lot of work for a simple task. Thanks

link|improve this question

50% accept rate
feedback

3 Answers

up vote 0 down vote accepted

I think you're talking about JAVA. If it's Javascript, foreget this answer (and please tag accordingly your question). In that case, getElementsByTagName only works on "Element" objects, and not on "Node" objects (all Elements are Nodes, but all Nodes are not Elements).

http://docs.oracle.com/javase/6/docs/api/org/w3c/dom/Element.html

If you are sure your object is an Element, you can do a cast just before calling the method

Element eElement = (Element) nNode;

You may need http://docs.oracle.com/javase/6/docs/api/java/lang/Class.html#isAssignableFrom%28java.lang.Class%29 before.

link|improve this answer
feedback

Use JQuery

$('#HTMLBodyID').find('targetName')
link|improve this answer
or MooTools: $('HTMLBodyID').getChildren('targetName') or DoJo Toolkit dojo.byId('targetName', 'HTMLBodyID') – Wouter J Jan 19 at 19:16
feedback

I have tested the code and I get the espected result. So I think you do something wrong.

An example: http://tinkerbin.com/uAgGGIM4 (click run to run the code)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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