Node.isEqualNode(options)

Method Description

Returns true if two nodes are equal or returns false if two nodes are not equal.

The two nodes are equal if they meet the following conditions:

  • Both nodes have the same type.

  • Both nodes have the same attributes and attribute values. The order of the attributes is not considered.

  • Both nodes have equal lists of child nodes and the child nodes appear in the same order.

Note:

Two nodes may be equal, even if they are not the same. See Node.isSameNode(options).

Important:

This method is not supported on Internet Explorer.

Returns

boolean

Supported Script Types

Client and server scripts

For more information, see SuiteScript 2.x Script Types.

Governance

None

Module

N/xml Module

Since

2015.2

Parameters
Note:

The options parameter is a JavaScript object.

Parameter

Type

Required / Optional

Description

options.other

xml.Node

required

The node to compare with the current node.

Syntax
Important:

The following code sample shows the syntax for this member. It is not a functional example. For a complete script example, see N/xml Module Script Samples.

          //Add additional code 
...
var isEqual = elem[0].isEqualNode({
    other : node
});
... 
//Add additional code 

        

Related Topics

General Notices