| The Information Overlaid Toolkit: ; Referance Manual Edition 2.2, for Information Overlaid Version 2.3; 25th October 2002 | ![]() | ||
|---|---|---|---|
| Prev | Appendix A. ? Cross Browser Compatability | Next | |
Netscape 6 on Unix has a problem knowing when everything in a page has been loaded and is stable. This means that sometimes the page's onLoad function is called before the applet is loaded.
The easiest solution to this problem is to check the ok returned by easel_init. If it is false, wait for a while and try again:
function localOnLoad() { if (!easel_init("2.1", document.map)) { setTimeout("localOnLoad();", 500); return; } // rest of onload function as usual