> The OnLoad event IS being used, but does not call the 
> ChangeDiv function - but the ChangeDiv IS being called 
> by the applet.  So, the inevitable suggestion to use 
> OnLoad isn't going to help any.

Can you rewrite the ChangeDiv function so that it only does its stuff if the
appropriate objects have been loaded - that is, if the page has been fully
loaded?

<script language="JavaScript">

var pageLoaded = false;

function changeDiv() {
        if (pageLoaded) {
                ...
        }
}

</script>

<body onload="pageLoaded=true;">

..

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
voice: (202) 797-5496
fax: (202) 797-5444

______________________________________________________________________
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/[email protected]/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to