W3Schools.com

XML DOM cloneNode() Method


Element Object Reference Element Object

Definition and Usage

The cloneNode() method creates an exact copy of a specified node.

This method returns the cloned node.

Syntax

cloneNode(include_all)

Parameter Description
include_all Required. If the Boolean parameter is set to true, the cloned node clones all the child nodes of the original node as well


Example

The following code fragment loads "books.xml" into xmlDoc using loadXMLDoc() and copies the first <book> node, then adds the copy to the end of the node list:

Example

xmlDoc=loadXMLDoc("books.xml");

oldNode=xmlDoc.getElementsByTagName('book')[0];
newNode=oldNode.cloneNode(true);
xmlDoc.documentElement.appendChild(newNode);

//Output all titles
y=xmlDoc.getElementsByTagName("title");
for (i=0;i<y.length;i++)
{
document.write(y[i].childNodes[0].nodeValue);
document.write("<br />");
}

Output:

Everyday Italian
Harry Potter
XQuery Kick Start
Learning XML
Everyday Italian

Try it yourself »

Element Object Reference Element Object
WEB HOSTING
Best Web Hosting
PHP MySQL Hosting
Best Hosting Coupons
UK Reseller Hosting
Cloud Hosting
Top Web Hosting
$7.95/mo SEO Hosting
Premium Website Design
WEB BUILDING
XML Editor - Free Trial!
FREE Website BUILDER
Free Website Templates Free CSS Templates
Make Your Own Website
W3SCHOOLS EXAMS
Get Certified in:
HTML, CSS, JavaScript, XML, PHP, and ASP
W3SCHOOLS BOOKS
New Books:
HTML, CSS
JavaScript, and Ajax
STATISTICS
Browser Statistics
Browser OS
Browser Display
SHARE THIS PAGE