Does anyone know whether <DIV> tag + Style Sheet (to specify the visibility and layer positioning) work in opera browser for BeOS?
I want to use layers with style sheet to dynamically show/hide a layer. This works in IE and Netscape using <DIV> tags. As a
matter of fact, Opera on Windows OS also works. But the same code didn't work in Opera browser on BeOS. Does anyone have
any clues on this or know how to tackle this problem?
Please give me some hints! Thank you so much!
Yi-Fon
Don't know if this will help in the version that you have but:
Well the following code works for Opera, Netscape 6 and IE:
if(document.getElementById) {
document.getElementById(name).style.visibility='visible';
}
and
document.getElementById(name).style.visibility='hidden';
Steve