blob: 9d413b9356258db68162d3c4e2ff01351730105c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<script>
var count = 1;
function run() {
var div = document.createElement("div");
div.textContent = "Testing " + (count++);
document.body.appendChild(div);
if (count > 10)
document.body.removeChild(document.body.firstChild);
}
setInterval(run, 1000);
</script>
|