AvailabilityDOM Level 2 Core SynopsisNode[] getElementsByTagNameNS(String namespaceURI, String localName); Arguments
ReturnsA read-only array (technically, a NodeList) of all Element nodes in the document tree that have the specified namespace and local name. DescriptionThis method works just like getElementsByTagName( ) except that it searches for elements by namespace and name. It is useful only with XML documents that use namespaces. |