Hook a javascript event to page load - Stack Overflow most recent 30 from stackoverflow.com2009-12-10T21:49:45Zhttp://stackoverflow.com/feeds/question/946518http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/946518/hook-a-javascript-event-to-page-load4Hook a javascript event to page loadJagd2009-06-03T18:57:39Z2009-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><body onload="startClock();">
</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#9465362Answer by Gabriel Hurley for Hook a javascript event to page loadGabriel Hurley2009-06-03T19:02:21Z2009-06-03T19:02:21Z<p>Insert this anywhere in the body of the page:</p>
<pre><code><script type="text/javascript">
window.onload = function(){
//do something here
}
</script>
</code></pre>
http://stackoverflow.com/questions/946518/hook-a-javascript-event-to-page-load/946543#9465430Answer by George for Hook a javascript event to page loadGeorge2009-06-03T19:03:29Z2009-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#9466764Answer by Corbin March for Hook a javascript event to page loadCorbin March2009-06-03T19:30:36Z2009-06-03T21:40:11Z<p>If you don't want to explicitly assign window.onload or use a framework, consider:</p>
<pre><code><script type="text/javascript">
function startClock(){
//do onload work
}
if(document.addEventListener){
document.addEventListener('load',startClock,false); //W3C
}
else{
document.attachEvent('onload',startClock); //IE
}
</script>
</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-1Answer by Josh Stodola for Hook a javascript event to page loadJosh Stodola2009-06-03T21:59:30Z2009-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 <script> 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>