hot questions tagged onload-event - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T04:06:52Z http://stackoverflow.com/feeds/tag?tagnames=onload-event&sort=hot http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1878189/add-a-load-event-for-winforms-control-just-as-form-class 0 Add a Load event for Winforms Control just as Form class deerchao 2009-12-10T01:52:28Z 2009-12-10T18:06:36Z <p>Hi, is there a way I can get a Load event for System.Windows.Forms.Control just like System.Windows.Forms.Form.Load?</p> <p>I want to run some initialize code before the control first shown.</p> <p>Also, it would be nice to be able to do the same for System.Windows.Forms.ToolStripStatusLabel which is not actually a Control, but works like one.</p> <p>Ideally, I can do this: control.OnLoad(() => { dosomething here; });</p> <p>in which OnLoad is a extension method that would run the argument Action when the "control" "Loads".</p> <p>Thanks!</p> http://stackoverflow.com/questions/1805456/insert-javascript-call-inside-body-onloadfunction-in-rails 0 Insert javascript call inside <body onLoad=function()> in RAILS juanmaflyer 2009-11-26T20:08:50Z 2009-11-27T04:55:06Z <p>Hi, I am n00b at rails. The question is very simple, i want to know how can i make a javascript function call inside body tag on the onLoad event.</p> <p>I'm asking this because in the views i can't find any body or head tag (It's like they are generated elsewhere).</p> <p>Thanks</p> http://stackoverflow.com/questions/1239474/javascript-collect-info-from-multiple-function-onload-events-until-web-page-fini 0 Javascript: collect info from multiple function onload events until web page finishes loading EddyR 2009-08-06T14:58:58Z 2009-08-06T15:50:04Z <p>Okay, now I've got this thing I need to do with Javascript but I have no idea the best way of doing it! I'll explain by telling you how I "think" it should work...</p> <ol> <li><p>Inside the web page there will be multiple span tag like this: <code>&lt;span onload="myfunction(1);"&gt;&lt;/span&gt;</code> </p></li> <li><p>myfunction() (hosted externally) will wait until the page finishes loading and collect all the information from each of the onload events.</p></li> <li><p>Then myfunction() will send this information to a external php page for processing.</p></li> <li><p>The php page will return some html. (Probably in an array because I want to do this in 1 call)</p></li> <li><p>myfunction() will then replace the span tags with the html.</p></li> </ol> <p>Steps 3, 4, and 5 I know how to do but steps 1 and 2 I'm not sure how to achieve? I've listed all my steps here just in case someone sees another big problem I might run into.</p> 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>