any ideas on how to hide <form> elements with onMouseOver in NS4.72?
I can get it to work with every other browser except NS4.7X. Heres wat Ive tried:
function hide(){
if (document.getElementById){
document.getElementById("form").style.visibility = 'hidden';}
if(document.all){document.all("form").style.visibility = 'hidden';}
}
I can get it to work with every other browser except NS4.7X. Heres wat Ive tried:
function hide(){
if (document.getElementById){
document.getElementById("form").style.visibility = 'hidden';}
if(document.all){document.all("form").style.visibility = 'hidden';}
}