-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDOMRangeExample4.htm
More file actions
executable file
·26 lines (21 loc) · 982 Bytes
/
Copy pathDOMRangeExample4.htm
File metadata and controls
executable file
·26 lines (21 loc) · 982 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>DOM Range Example</title>
<script type="text/javascript">
function deleteContent() {
var p1 = document.getElementById("p1"),
helloNode = p1.firstChild.firstChild,
worldNode = p1.lastChild,
range = document.createRange();
range.setStart(helloNode, 2);
range.setEnd(worldNode, 3);
range.deleteContents();
}
</script>
</head>
<body><p id="p1"><b>Hello</b> world!</p>
<input type="button" value="Delete Content" onclick="deleteContent()" />
<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>