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
[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
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