If the scripts are not present at page load they will load after ready has already fired. You'll have to use a callback (like in JSONP) to fire when a script has loaded. There was a posting recently about a plugin that loads js in an iframe and uses the body onload event, but I can't remember it's name.
cheers, - ricardo On Mar 10, 4:32 pm, Angus <trimk...@sbcglobal.net> wrote: > I am working on a Web app that will consist of virtually empty html > pages to be downloaded with references in the head tag to JS files > that will be used to dynamically construct the elements of the page. > I have read that the "ready" event waits until the DOM is loaded and > manipulable. Would this mean waiting until all of the JS includes > have been downloaded? > > Thanks.