Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
What's wrong with it being right before the end of the body? – Jared Farrish Feb 16 at 0:50
@nathanhayfield so that is saying that I should wrap all my js in an if statement with the document.readyState? – fredsbend Feb 16 at 0:51
How exactly does it 'not work'? window.onload should fire when the page is ready for presentation, IIRC. A snippet would help make the issue clearer. – m.brindley Feb 16 at 0:51
@jaredFarrish see edit. Has to do with wp and php theme. – fredsbend Feb 16 at 0:53
show 5 more comments

1 Answer

Just use window.onload.

<html>

<head>
<script type="text/javascript">
    // This will be executed right away
    var a = 5;

    window.onload = function() {
        // This will only execute once your page is loaded (same as `<body onload=...`)
        a = 10;
    };
</script>
</head>

<body>
...
</body>
</html>
share|improve this answer
addEventListener is W3C compliant. window.onload should work, but is less flexible (even considering the attachEvent bologne). – Jared Farrish Feb 16 at 1:03
@JaredFarrish Seems like I missed the comments... :) – ATOzTOA Feb 16 at 1:04

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.