docs.rodeo

MDN Web Docs mirror

NamedNodeMap: removeNamedItemNS() method

{{APIRef("DOM")}} 

The removeNamedItemNS() method of the {{domxref("NamedNodeMap")}}  interface removes the {{domxref("Attr")}}  corresponding to the given namespace and local name from the map.

Syntax

removeNamedItemNS(namespace, localName)

Parameters

Return value

The removed {{domxref("Attr")}} .

Exceptions

Example

<pre></pre>
const parser = new DOMParser();
const xmlString =
  '<warning ob:one="test" xmlns:ob="http://www.example.com/ob">Beware!</warning>';
const doc = parser.parseFromString(xmlString, "application/xml");

const pre = document.querySelector("pre");
const warning = doc.querySelector("warning");
const attrMap = warning.attributes;

let result = `The 'ob:one' attribute initially contains '${attrMap["ob:one"].value}'.\n`;

result += "We remove it.\n\n";
attrMap.removeNamedItemNS("http://www.example.com/ob", "one");

result += attrMap["ob:one"]
  ? "And 'ob:one' still exists."
  : "And 'ob:one' is no more to be found.";

pre.textContent = result;

{{EmbedLiveSample("Example", "100%", 120)}} 

Specifications

{{Specifications}} 

Browser compatibility

{{Compat}} 

In this article

View on MDN