blob: cf1ce282d28c678324d0a9560af8d5a3eb536186 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
<html>
<head>
<style>
span#dd:before {
display: inline;
white-space: pre;
content: "bef-\Aore";
color: gray;
}
</style>
<script>
function boo()
{
var div = document.getElementById("div");
var dd = document.getElementById("dd");
var newTextNode = document.createTextNode("new");
dd.insertBefore(newTextNode, div);
}
window.addEventListener("load", boo);
</script>
</head>
<body>
<span id="dd"><div id="div">div</div></span>
</body>
</html>
|