[/quote]
You only need to add these codes after ur onload hander on the tracker.js like this.
<">
Last edited by bobcbar (2007-10-01 21:39:18)
Well, how can move all left side boxes to right n vice versa
thanks..
thanks..
im sorry for double posting...an error occured while im posting this so it doubled..
Last edited by kia_bunso28 (2007-10-18 02:40:09)
Well, how can move all left side boxes to right n vice versa
[/quote]
[b]
yah....that's my question also..how to move them to left and vice versa.... to up and down
[/b]
thanks!!!
Last edited by kia_bunso28 (2007-10-18 02:38:07)
[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]