From http://www.w3schools.com (Copyright Refsnes Data)
Complete Element Object Reference
The getAttributeNS() method gets an attribute node by namespace URI and name.
| elementNode.getAttributeNodeNS(ns,name) |
| Parameter | Description |
|---|---|
| ns | Required. Specifies the namespace URI to get the attribute value from |
| name | Required. Specifies the attribute to get the attribute value from |
The following code fragment loads "books_ns.xml" into xmlDoc using loadXMLDoc() and gets the "lang" attribute node from the first <title> element:
Example
Output:
Try it yourself » |
Complete Element Object Reference
From http://www.w3schools.com (Copyright Refsnes Data)