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.

Node.isDefaultNamespace()

Nuestros voluntarios aún no han traducido este artículo al Español. Únete a nosotros y ayúdanos a traducirlo

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

Etiquetas y colaboradores del documento

 Colaboradores en esta página: fscholz, teoli, kscarfone, namolmes, Sheppy, mattbasta, ethertank, ziyunfei, Brettz9
 Última actualización por: fscholz,