-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDOMRangeExample9.htm
More file actions
executable file
·25 lines (22 loc) · 1.05 KB
/
Copy pathDOMRangeExample9.htm
File metadata and controls
executable file
·25 lines (22 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<!DOCTYPE html>
<html>
<head>
<title>DOM Range Example</title>
<script type="text/javascript">
function compare() {
var range1 = document.createRange(),
range2 = document.createRange(),
p1 = document.getElementById("p1");
range1.selectNodeContents(p1);
range2.selectNodeContents(p1);
range2.setEndBefore(p1.lastChild);
alert(range1.compareBoundaryPoints(Range.START_TO_START, range2)); //outputs 0
alert(range1.compareBoundaryPoints(Range.END_TO_END, range2)); //outputs 1
}
</script>
</head>
<body><p id="p1"><b>Hello</b> World</p>
<input type="button" value="Compare Ranges" onclick="compare()" />
<p><strong>Note:</strong> This example uses DOM ranges and will only work in browsers that support DOM ranges. This example will fail in Internet Explorer < 9.</p>
</body>
</html>