Subj : Javascript and java-method works on Windows but not on Linux To : netscape.public.mozilla.jseng From : Nordine Vandezande Date : Wed Jan 14 2004 03:02 pm Hi all, i'm using a java-method in java-script like this (applet is loaded using the APPLET-tag): function checkApplet () { if (document.dummy.isLoaded() == "yes") { printMenu(); } else { setTimeout(checkApplet,100); } } This function is called whenever the page is loaded (body onload). The strange thing is that there is not a problem using this on a Windows platform (tested it with IE 5.5 and FireBird 0.7), but it fails when i try to use it on Linux (FireBird 0.7 and Mozilla 1.5). I'm getting an error: document.dummy.isLoaded is not a function. Anyone any ideas? Thanks in advance, Nordine .