Find out where one paragraph is postiotioned compared to another paragraph:
The result will be:
The compareDocumentPosition() method compares two nodes, and returns an integer describing where they are positioned in the document.
Look at the example above. The possible return values would specify:
1: No relationship, the two nodes do not belong to the same document.
2: The first node (p1) is positioned after the second node (p2).
4: The first node (p1) is positioned before the second node (p2).
8: The first node (p1) is positioned inside the second node (p2).
16: The second node (p2) is positioned inside the first node (p1).
32: No relationship, or the two nodes are two attributes on the same element.
Note: The return value could also be a combination of values. I.e. the returnvalue 20 means that p2 is inside p1 (16) AND p1 is positioned before p2 (4).
![]()
The compareDocumentPosition() method is supported in all major browsers.
Note: Internet Explorer 8 and earlier does not support this method.
| Parameter | Type | Description |
|---|---|---|
| node | Node object | Required. The node you want to compare the specified node with |
| Type | Description |
|---|---|
| Number | A Number representing where two nodes are positioned compared to each other
Possible return values: 1 (No relationship, the two nodes do not belong to the same document) 2 (The first node (p1) is positioned after the second node (p2)) 4 (The first node (p1) is positioned before the second node (p2)) 8 (The first node (p1) is positioned inside the second node (p2)) 16 (The second node (p2) is positioned inside the first node (p1)) 32 (No relationship, or the two nodes are two attributes on the same element) |
| DOM Version | Core Level 1 |
|---|
Node Object
Your message has been sent to W3Schools.