javascript thread: Is there a way to check within a page to see if an external js file has fully loaded?
Defer works, but in IE it tells the browser if it should continue rendering
elements once the external script file is loaded.
Use: <script language = "myJS.js" defer>
or
create a conditional statement using: readyState
if (document.all.ExternalScript.readyState == "unitialized")
{
//don't load even't
}
else
{
//load event
}
|





