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()

Nossos voluntários ainda não traduziram este artigo para o Português (do Brasil) . Junte-se a nós e ajude a fazer o trabalho!

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 do documento e colaboradores

 Colaboradores desta página: fscholz, teoli, kscarfone, namolmes, Sheppy, mattbasta, ethertank, ziyunfei, Brettz9
 Última atualização por: fscholz,