XML DOM isSameNode() Method
Complete Element Object Reference
Definition and Usage
The isSameNode() method checks if the specified node is the same as the
existing node.
This function returns TRUE if the two nodes are the same, and FALSE
otherwise.
Syntax
|
elementNode.isSameNode(node)
|
| Parameter |
Description |
| node |
Required. The node to check |
Example
The following code fragment loads "books.xml"
into xmlDoc using
loadXMLDoc() and checks if two nodes are the same:
Example
xmlDoc=loadXMLDoc("books.xml");
x=xmlDoc.getElementsByTagName("book")[0];
y=xmlDoc.getElementsByTagName("book")[1];
document.write(x.isSameNode(y));
|
Output:
Try it yourself »
|
Complete Element Object Reference
Click here to design a Stunning Flash Website for Free
Wix is a revolutionary web design tool that provides anyone with the possibility to create professional and beautiful websites for free.
With e-commerce features, search engine visibility and many more professional tools, Wix is the ultimate solution for creating a spectacular site while saving tons of money.
|