getElementsByTagName
Returns a list of the child elements of a given name on the current element.
Syntax
elements = element.getElementsByTagName(Name)Parameters
elements is a nodeList of elements.
tagName is a string representing the name of the elements.
Example
Notes
getElementsByTagName on the element is the same as getElementsByTagName on the document, except that its search is restricted to those elements which are children of the current element.
Specification
getElementsByTagName
Netscape Communications http://developer.netscape.com |