blob: dfcf50d9002e5e984f3eda00a92740f7e372b79d (
plain)
1
2
3
4
5
6
7
8
9
10
|
<script>
function go() {
var b = window.getSelection();
var c = document.getSelection();
b.setBaseAndExtent(document.getElementById("a"), 0, document.body.firstChild, 1);
c.deleteFromDocument();
}
</script>
<body onload=go()>
<p id="a">
|