XML DOM getAttributeNS() Method


❮ Element Object

Example

The following code fragment loads "books_ns.xml" into xmlDoc and gets the "lang" attribute value from the first <title> element:

var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
   if (this.readyState == 4 && this.status == 200) {
       myFunction(this);
   }
};
xhttp.open("GET", "books_ns.xml", true);
xhttp.send();

function myFunction(xml) {
    var xmlDoc = xml.responseXML;
    var x = xmlDoc.getElementsByTagName("title")[0];
    var ns = "https://www.w3schools.com/children/";
    document.getElementById("demo").innerHTML =
    x.getAttributeNS(ns, "lang");
}

Output:

en
Try it Yourself »

Definition and Usage

The getAttributeNS() method gets an attribute value by namespace URI and name.

Syntax

elementNode.getAttributeNS(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

❮ Element Object
Copyright 1999-2023 by Refsnes Data. All Rights Reserved.