Element - getElementsByTagName
Specification
function getElementsByTagName
(Self : in DOMElement;
name : in DOMString)
return DOMNodeList;
Description
Returns a NodeList of all descendant Elements with a given tag name, in the order in which they are encountered in a preorder traversal of this Element tree.
Parameters
| name | The name of the tag to match on. The special value "*" matches all tags. |
Return value
A list of matching Element nodes.
Exceptions
This method raises no exceptions.
Standard
Introduced in DOM Level 1.
get_tagName
getAttribute
setAttribute
removeAttribute
getAttributeNode
setAttributeNode
removeAttributeNode
getElementsByTagName
(normalize)
getAttributeNS
setAttributeNS
removeAttributeNS
getAttributeNodeNS
setAttributeNodeNS
getElementsByTagNameNS
hasAttribute
hasAttributeNS
e-Mail: denny@nodix.de
|