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.

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

The Node.hasChildNodes() method returns a Boolean value indicating whether the current Node has child nodes or not.

Syntax

node.hasChildNodes()

Examples

The next example removes the first child node inside the element with the id "foo" if foo has child nodes.

var foo = document.getElementById("foo");

if ( foo.hasChildNodes() ) { 
  foo.removeChild( foo.childNodes[0] );
}

Specification

See also

Etiquetas y colaboradores del documento

Etiquetas: 
 Última actualización por: fscholz,