AvailabilityDOM Level 2 Core SynopsisString getAttributeNS(String namespaceURI, String localName); Arguments
ReturnsThe string value of the named attribute. If the attribute is not explicitly specified in the document and does not have a default value specified by the document type, this method returns the empty string. DescriptionThis method works just like the getAttribute( ) method, except that the attribute is specified by a combination of namespace URI and local name within that namespace. This method is useful only with XML documents that use namespaces. See AlsoElement.getAttribute( ), Element.getAttributeNodeNS( ) |