-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDOMRangeExample8.htm
More file actions
executable file
·27 lines (22 loc) · 1.01 KB
/
Copy pathDOMRangeExample8.htm
File metadata and controls
executable file
·27 lines (22 loc) · 1.01 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
26
27
<!DOCTYPE html>
<html>
<head>
<title>DOM Range Example</title>
<script type="text/javascript">
function insertContent() {
var p1 = document.getElementById("p1"),
helloNode = p1.firstChild.firstChild,
worldNode = p1.lastChild,
range = document.createRange();
range.selectNode(helloNode);
var span = document.createElement("span");
span.style.backgroundColor = "yellow";
range.surroundContents(span);
}
</script>
</head>
<body><p id="p1"><b>Hello</b> World</p>
<input type="button" value="Insert Content" onclick="insertContent()" />
<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>