I have created a div tag and appended it as a child to the document body.
Obj=document.cr eateElement('DI V');
Obj=document.bo dy.appendChild( Obj);
Is there a way to move the object w/o deleting it and creating a new one?
Maybe a remove and appendBefore or appendAfter?
gsb
Obj=document.cr eateElement('DI V');
Obj=document.bo dy.appendChild( Obj);
Is there a way to move the object w/o deleting it and creating a new one?
Maybe a remove and appendBefore or appendAfter?
gsb
Comment