Getting notified when the page DOM has loaded (but before window.onload) - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T05:55:50Z http://stackoverflow.com/feeds/question/65434 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/65434/getting-notified-when-the-page-dom-has-loaded-but-before-window-onload 3 Getting notified when the page DOM has loaded (but before window.onload) levik 2008-09-15T18:28:43Z 2008-09-16T10:37:11Z <p>I know there are some ways to get notified when the page body has loaded (before all the images and 3rd party resources load which fires the <strong>window.onload</strong> event), but it's different for every browser.</p> <p>Is there a definitive way to do this on all the browsers?</p> <p>So far I know of:</p> <ul> <li><p><strong>DOMContentLoaded</strong> : On Mozilla, Opera 9 and newest WebKits. This involves adding a listener to the event:</p> <p>document.addEventListener( "DOMContentLoaded", [init function], false );</p></li> <li><p><strong>Deferred script</strong>: On IE, you can emit a SCRIPT tag with a @defer attribute, which will reliably only load after the closing of the BODY tag.</p></li> <li><p><strong>Polling</strong>: On other browsers, you can keep polling, but is there even a standard thing to poll for, or do you need to do different things on each browser?</p></li> </ul> <p>I'd like to be able to go without using document.write or external files.</p> <p>This can be done simply via jQuery:</p> <pre><code>$(document).ready(function() { ... }) </code></pre> <p>but, I'm writing a JS library and can't count on jQuery always being there.</p> http://stackoverflow.com/questions/65434/getting-notified-when-the-page-dom-has-loaded-but-before-window-onload/65455#65455 1 Answer by Sijin for Getting notified when the page DOM has loaded (but before window.onload) Sijin 2008-09-15T18:32:15Z 2008-09-15T18:32:15Z <p>Just take the relevant piece of code from jQuery, John Resig has covered most of the bases on this issue already in jQuery.</p> http://stackoverflow.com/questions/65434/getting-notified-when-the-page-dom-has-loaded-but-before-window-onload/65476#65476 -1 Answer by Dave Ward for Getting notified when the page DOM has loaded (but before window.onload) Dave Ward 2008-09-15T18:35:11Z 2008-09-15T18:35:11Z <p>This works pretty well:</p> <pre><code>setTimeout(MyInitFunction, 0); </code></pre> http://stackoverflow.com/questions/65434/getting-notified-when-the-page-dom-has-loaded-but-before-window-onload/65527#65527 5 Answer by John Millikin for Getting notified when the page DOM has loaded (but before window.onload) John Millikin 2008-09-15T18:40:52Z 2008-09-15T18:40:52Z <p>There's no cross-browser method for checking when the DOM is ready -- this is why libraries like jQuery exist, to abstract away nasty little bits of incompatibility.</p> <p>Mozilla, Opera, and modern WebKit support the <code>DOMContentLoaded</code> event. IE and Safari need weird hacks like scrolling the window or checking stylesheets. The gory details are contained in jQuery's <code>bindReady()</code> function.</p> http://stackoverflow.com/questions/65434/getting-notified-when-the-page-dom-has-loaded-but-before-window-onload/65582#65582 2 Answer by Michael Cramer for Getting notified when the page DOM has loaded (but before window.onload) Michael Cramer 2008-09-15T18:45:43Z 2008-09-15T18:45:43Z <p>YUI uses three tests to do this: for Firefox and recent WebKit there's a DOMContentLoaded event that is fired. For older Safari the document.readyState watched until it becomes "loaded" or "complete". For IE an HTML &lt;P&gt; tag is created and the "doScroll()" method called which should error out if the DOM is not ready. The source for <a href="http://developer.yahoo.com/yui/docs/Event.js.html" rel="nofollow">YAHOO.util.Event</a> shows YUI-specific code. Search for "doScroll" in the Event.js.</p> http://stackoverflow.com/questions/65434/getting-notified-when-the-page-dom-has-loaded-but-before-window-onload/66209#66209 3 Answer by Pat for Getting notified when the page DOM has loaded (but before window.onload) Pat 2008-09-15T19:50:20Z 2008-09-15T19:50:20Z <p>Using a library like jQuery will save you countless hours of browsers inconsistencies.</p> <p>In this case with jQuery you can just</p> <pre><code>$(document).ready ( function () { //your code here }); </code></pre> <p>If you are curious you can take a look at the source to see how it is done, but is this day and age I don't think anyone should be reinventing this wheel when the library writer have done all the painful work for you.</p> http://stackoverflow.com/questions/65434/getting-notified-when-the-page-dom-has-loaded-but-before-window-onload/67157#67157 2 Answer by levik for Getting notified when the page DOM has loaded (but before window.onload) levik 2008-09-15T21:27:08Z 2008-09-15T21:27:08Z <p>I found this page, which shows a compact self-contained solution. It seems to work on every browser and has an explanation on how:</p> <p><a href="http://www.kryogenix.org/days/2007/09/26/shortloaded" rel="nofollow">http://www.kryogenix.org/days/2007/09/26/shortloaded</a></p> http://stackoverflow.com/questions/65434/getting-notified-when-the-page-dom-has-loaded-but-before-window-onload/70595#70595 -1 Answer by hulver for Getting notified when the page DOM has loaded (but before window.onload) hulver 2008-09-16T09:10:47Z 2008-09-16T09:10:47Z <p>Using setTimeout can work quite well, although when it's executed is up to the browser. If you pass zero as the timeout time, the browser will execute when things are "settled".</p> <p>The good thing about this is that you can have many of them, and don't have to worry about chaining onLoad events.</p> <pre><code>setTimeout(myFunction, 0); setTimeout(anotherFunction, 0); setTimeout(function(){ doSomething ...}, 0); </code></pre> <p>etc.</p> <p>They will all run when the document has finished loading, or if you set one up after the document is loaded, they will run after your script has finished running.</p> <p>The order they run in is not determined, and can change between browsers. So you can't count on <code>myFunction</code> being run before <code>anotherFunction</code> for example.</p> http://stackoverflow.com/questions/65434/getting-notified-when-the-page-dom-has-loaded-but-before-window-onload/71085#71085 0 Answer by Slartibartfast for Getting notified when the page DOM has loaded (but before window.onload) Slartibartfast 2008-09-16T10:37:11Z 2008-09-16T10:37:11Z <p>Why not this: </p> <pre><code>&lt;body&gt; &lt;!-- various content --&gt; &lt;script type="text/javascript"&gt; &lt;!-- myInit(); --&gt; &lt;/script&gt; &lt;/body&gt; </code></pre> <p>If I understand things correctly, myInit is gonna get executed as soon as browser hit it in the page, which is last thing in a body.</p>