I have a page that uses a lot of javascript to manipulate elements.
Currently, I have to call the javascript in a script tag just before </body> for it to work.
I would like to be able to call the javascript in the head section and still have it work. It is easier for implementation in a php theme I am working on in a WordPress site. I would rather not have to use jQuery because, as I understand it, that would require yet another file for the page to work.
I have tried wrapping the js in a function and calling it in window.onload but that did not work.
body? – Jared Farrish Feb 16 at 0:50window.onloadshould fire when the page is ready for presentation, IIRC. A snippet would help make the issue clearer. – m.brindley Feb 16 at 0:51