You are viewing a post by Flameheart. View all 131 posts in the code may become obselete..
[quote]if ( ! attachOnLoadHandler(function () { moveBox();}))
window.onload = function () {
moveBox();};
function moveBox() {
var x; var t;
t = document.getElementById("10"); //the box to be moved
x = document.getElementById("tracker").parentNode;
x.parentNode.insertBefore(t,x);
}[/quote]
You are viewing a post by Flameheart. View all 131 posts in the code may become obselete..