A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://developer.cdn.mozilla.net/en-US/docs/Web/API/NamedNodeMap/removeNamedItem below:

NamedNodeMap: removeNamedItem() method - Web APIs

NamedNodeMap: removeNamedItem() method

Baseline Widely available

The removeNamedItem() method of the NamedNodeMap interface removes the Attr corresponding to the given name from the map.

Syntax
removeNamedItem(attrName)
Parameters
attrName

The name of the attribute to remove from the map.

Return value

The removed Attr.

Exceptions
NotFoundError DOMException

Thrown if there is no attribute with the given name.

Example
<pre test="testValue"></pre>
const pre = document.querySelector("pre");
const attrMap = pre.attributes;

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

result += "We remove it.\n\n";
attrMap.removeNamedItem("test");

result += attrMap.getNamedItem("test")
  ? "And 'test' still exists."
  : "And 'test' is no more to be found.";

pre.textContent = result;
Specifications Browser compatibility

RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4