XML DOM isSameNode() Method
Complete Node Object Reference
Definition and Usage
The isSameNode() method returns true if a node is the same node as the given
one, otherwise it returns false.
Syntax
nodeObject.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 node:
xmlDoc=loadXMLDoc("books.xml");
x=xmlDoc.getElementsByTagName("book")[0];
y=xmlDoc.getElementsByTagName("book")[1];
document.write(x.isSameNode(y));
|
Output:
Try-It-Yourself Demos
isSameNode() - Check if two nodes are the same node
Complete Node Object Reference
|
|
|
See why there are 20,000+ Ektron integrations worldwide.
Request an INSTANT DEMO or download a FREE TRIAL today. |
|
|
|