Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

The Node.isDefaultNamespace()method accepts a namespace URI as an argument and returns a Boolean with a value of true if the namespace is the default namespace on the given node or false if not.

Syntax

result = node.isDefaultNamespace(namespaceURI) 
  • result holds the return value true or false.
  • namespaceURI is a string representing the namespace against which the element will be checked.

Example

var XULNS = "https://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul";
var el = document.getElementsByTagNameNS(XULNS, 'textbox')[0];

alert(el.isDefaultNamespace(XULNS)); // true

Specification

Document Tags and Contributors

 Contributors to this page: fscholz, teoli, kscarfone, namolmes, Sheppy, mattbasta, ethertank, ziyunfei, Brettz9
 Last updated by: fscholz,