Re: JS auf Mozilla

2001-06-07 Thread Henri Sivonen
In article <[EMAIL PROTECTED]>, [EMAIL PROTECTED] (Steffi Wesarg) wrote: > Folgendes JavaScript wird von Mozilla nicht umgesetzt. document.layers and document.all are non-standards and are not supported in Mozilla. See: http://sites.netscape.net/ekrockhome/standards.html -- Henri Sivonen [E

Re: JS auf Mozilla

2001-06-07 Thread Gavin Long
[English version below/Englische Version unter] (traurig, spreche ich Deutsches nicht, so Übersetzung durch babelfish.altavista.com), > if (document.layers) { >obj.visibility = "show"; > } > > if (document.all) { > obj.style.visibility = "visible"; > } Dieses arbeitet nicht in Mozilla, ve

JS auf Mozilla

2001-06-07 Thread Steffi Wesarg
HALLO Folgendes JavaScript wird von Mozilla nicht umgesetzt. __ function show(text) { obj = eval(text); if(document.layers){ obj.visibility = "show"; } if(document.all){ obj.style.visibility = "visible