What is document.layer and document.all properties of documnt object?????
What is document.layer and document.all properties of documnt object?????
document.layers(i think v 3+) is a way to figure out if your code is being interpreted by a Netscape browser...
and document.all is for InternetExplorer(v 4+)
if(document.layers){
i am in Netscape
}
if(document.all){
i am in InternetExplorer
}
hasta