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

Possible Duplicate:
$(document).ready equivalent without jQuery

I know you can use the window.onload event to make functions run, but is there a way for a script to query if the document is ready or not?

Something like

function update()
{
    if( !document.ready() )  // don't do unless document loaded
        return ;
}
window.setInterval( 'update();', 100 ) ;

Cannot change the <body> element, and no jQuery/other libraries.

share|improve this question
@justkt The OP is not searching for a ready equivalent, but for a method to query whether or not the document has become ready. – Šime Vidas Apr 18 '11 at 18:16
@Šime - ready does check whether the document has become ready, then fires events if any are bound to it. – justkt Apr 18 '11 at 18:18
@justkt Binding a handler to the "ready" event is one thing and querying if the document is ready is another thing. The OP is doing the latter, and that other question the former. Those are two different things. – Šime Vidas Apr 18 '11 at 18:33

marked as duplicate by ripper234, rds, dty, Alexis Pigeon, Jeffrey Jan 17 at 16:44

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

3 Answers

up vote 15 down vote accepted

Here you go:

// WARNING! Don't use this code. Use the updated code below.
function update() {
    if ( document.readyState !== 'complete' ) { return; }
    // do your work
}

setInterval(update, 100);

Read about the document.readyState property here. I am not sure if all current browsers implement it.


Update: Uh, I forgot to clear the interval. Here is the new code:

var tid = setInterval( function () {
    if ( document.readyState !== 'complete' ) return;
    clearInterval( tid );       
    // do your work
}, 100 );
share|improve this answer
2  
Grrrrreat answer!! Tested Chrome, IE6,7,and 9, Firefox 4, Opera 11 it works. – bobobobo Apr 18 '11 at 21:23

Checkout https://github.com/jakobmattsson/onDomReady

It's more complicated than a few lines! - If you want multiple browser compliance.

share|improve this answer

This code will work in all browsers

if(window.attachEvent()){

    window.attachEvent("onload",load);

 }else{

    window.addEventListener("load",load,true);

 }

 function load(){
    //Code to execute when the document is loaded.
 }
share|improve this answer
1  
That, again, is the load, not the ready event. These are different. – Adrian Lang Sep 28 '12 at 8:21

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