XML DOM createElementNS() Method

The following code fragment loads "books.xml" into xmlDoc and adds an element node with a namespace to each <book> element

Definition and Usage

The createElementNS() method creates an element node with a namespace.

This method returns an Element object.

Syntax

createElementNS(ns,name)
Parameter Description
ns A string that specifies the namespace name for the element node
name A string that specifies the name for the element node

❮ Document Object