I have a jQuery enabled application that is running too fast for the Stylesheet to load. I can't figure out how to have the javascript run when the styles are all done.<p>Here is my page order<p>HTML
HEAD
JAVASCRIPT
CSS - One file with includes
TEXT
FOOTER<p>Any suggestions? I can reorder it but I'd like a clean solution maybe with something to do with the browser.<p>Paul
The CSS should go in the head, and the Javascript can be placed at the very end of the page right before the closing body tag.<p>Failing that, you can put the JS right below the CSS in the head tag.