I can move a couple of layers in IE, but they are not moving in NS.
What is wrong with this?
if (NS4)
{
document.word1. left = mv1From;
}
else if (NS6)
{
document.getEle mentById('word1 ').style.left = mv1From + "px";
}
else if (IE)
{
document.all.wo rd1.style.left = mv1From + "px";
}
What is wrong with this?
if (NS4)
{
document.word1. left = mv1From;
}
else if (NS6)
{
document.getEle mentById('word1 ').style.left = mv1From + "px";
}
else if (IE)
{
document.all.wo rd1.style.left = mv1From + "px";
}
Comment