Hook a javascript event to page load - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T21:49:45Z http://stackoverflow.com/feeds/question/946518 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/946518/hook-a-javascript-event-to-page-load 4 Hook a javascript event to page load Jagd 2009-06-03T18:57:39Z 2009-06-03T21:59:30Z <p>I have an aspx that has the following javascript function being ran during the onload event of the body.</p> <pre><code>&lt;body onload="startClock();"&gt; </code></pre> <p>However, I'm setting the aspx up to use a master page, so the body tag doesn't exist in the aspx anymore. How do I go about registering the startClock function to run when the page is hit and still have it use a masterpage? </p> http://stackoverflow.com/questions/946518/hook-a-javascript-event-to-page-load/946536#946536 2 Answer by Gabriel Hurley for Hook a javascript event to page load Gabriel Hurley 2009-06-03T19:02:21Z 2009-06-03T19:02:21Z <p>Insert this anywhere in the body of the page:</p> <pre><code>&lt;script type="text/javascript"&gt; window.onload = function(){ //do something here } &lt;/script&gt; </code></pre> http://stackoverflow.com/questions/946518/hook-a-javascript-event-to-page-load/946543#946543 0 Answer by George for Hook a javascript event to page load George 2009-06-03T19:03:29Z 2009-06-03T19:03:29Z <pre><code>Page.ClientScriptManager.RegisterStartupScrip(this.GetType(), "startup", "startClock();", true); </code></pre> <p>or using prototype</p> <pre><code>document.observe("dom:loaded", function() { // code here }); </code></pre> http://stackoverflow.com/questions/946518/hook-a-javascript-event-to-page-load/946676#946676 4 Answer by Corbin March for Hook a javascript event to page load Corbin March 2009-06-03T19:30:36Z 2009-06-03T21:40:11Z <p>If you don't want to explicitly assign window.onload or use a framework, consider:</p> <pre><code>&lt;script type="text/javascript"&gt; function startClock(){ //do onload work } if(document.addEventListener){ document.addEventListener('load',startClock,false); //W3C } else{ document.attachEvent('onload',startClock); //IE } &lt;/script&gt; </code></pre> <p><a href="http://www.quirksmode.org/js/events%5Fadvanced.html" rel="nofollow">http://www.quirksmode.org/js/events_advanced.html</a></p> http://stackoverflow.com/questions/946518/hook-a-javascript-event-to-page-load/947501#947501 -1 Answer by Josh Stodola for Hook a javascript event to page load Josh Stodola 2009-06-03T21:59:30Z 2009-06-03T21:59:30Z <p>This function is at the very top of my initially loaded Javascript file (mine happens to be called common.js)...</p> <pre><code>function addLoadEvent(func) { var oldonload = window.onload; if(typeof window.onload != 'function') { window.onload = func; } else { window.onload = function() { oldonload(); func(); } } } </code></pre> <p>And then I call it from other Javascript files or from inline &lt;script&gt; blocks like this...</p> <pre><code>addLoadEvent(function() { alert('Look'); }); addLoadEvent(function() { alert('at'); }); addLoadEvent(function() { alert('me!'); }); </code></pre> <p>Or...</p> <pre><code>function coolStuff() { //Do whatever } addLoadEvent(coolStuff); </code></pre>