blob: 6605b5b2226d1b590e3cb8a4c5b8983ae54d7530 (
plain)
1
2
3
4
5
6
7
8
9
10
|
<script>
function init() {
document.getElementById("three").appendChild(document.getElementById("two"))
setTimeout(function(){
document.getElementById("two").appendChild(document.getElementById("one"))
}, 200);
}
window.addEventListener("load", init, 0);
</script>
<table style="border-collapse: collapse;" border="1"><tr><td id="one">1</td><td id="two">2</td></tr><tr><td id="three">3</td><td>4</td></tr></table>
|