vote up 4 vote down star

I have an aspx that has the following javascript function being ran during the onload event of the body.

<body onload="startClock();">

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?

flag

4 Answers

vote up 4 vote down check

If you don't want to explicitly assign window.onload or use a framework, consider:

<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>

http://www.quirksmode.org/js/events_advanced.html

link|flag
+1 - I was too lazy to type this answer, but this is the way I would suggest someone does it too, with the same assumptions you initially state. – Jason Bunting Jun 3 at 19:56
Of course, I would abstract the details a wee bit - hopefully that is obvious to the OP... – Jason Bunting Jun 3 at 19:57
I must be missing something real obvious here, but where does the 'if' block of code go? You can't just dump that in a <script> tag can you? – Jagd Jun 3 at 20:59
You can stick it all in a script tag. I updated my answer to reflect it. This will force the 'if' logic to execute as the script is parsed so the startClock event is ready onload. – Corbin March Jun 3 at 21:42
1  
Since non-MS browsers are pretty good about implementing W3C DOM Level 2 recommendations, the 'else' exists for IE only. As Jason mentioned, we could(should) abstract the details and while we're at it we could add caution(is this a browser that doesn't support either event reg. model, is this function already registered, etc). I opted for simplicity in my example. Worth a downvote? I dunno. – Corbin March Jun 4 at 16:08
show 2 more comments
vote up 2 vote down

Insert this anywhere in the body of the page:

<script type="text/javascript">
window.onload = function(){
    //do something here
}
</script>
link|flag
3  
The only problem with this one is if other code, also pulled into the composite page, does the same thing - last in wins. Redefining window.onload works, but care should be taken to make sure it hasn't already been defined! – Jason Bunting Jun 3 at 19:23
Very true! Thanks for the reminder. – Gabriel Hurley Jun 3 at 19:35
vote up 0 vote down
Page.ClientScriptManager.RegisterStartupScrip(this.GetType(), "startup", "startClock();", true);

or using prototype

document.observe("dom:loaded", function() {
  // code here
});
link|flag
vote up -1 vote down

This function is at the very top of my initially loaded Javascript file (mine happens to be called common.js)...

function addLoadEvent(func) {
  var oldonload = window.onload;

  if(typeof window.onload != 'function') {
    window.onload = func;
  }
  else {
    window.onload = function() {
      oldonload();
      func();
    }
  }
}

And then I call it from other Javascript files or from inline <script> blocks like this...

addLoadEvent(function() { alert('Look'); });
addLoadEvent(function() { alert('at'); });
addLoadEvent(function() { alert('me!'); });

Or...

function coolStuff() {
  //Do whatever
}

addLoadEvent(coolStuff);
link|flag
Ew. What's wrong with addEventListener/attachEvent? I thought assigning functions directly to event properties went out with the 90's. – Joel Mueller Jun 3 at 22:14
So which one you gonna use? addEventListener or attachEvent? Oh, I guess you'll have to do some unreliable form of browser detection. Then a new browser comes out that breaks your code and you get to go back and cheerfully re-tool it. I've been writing Javascript since the 90s, and there are many things from that era that are still best practices today. I don't do browser detection because it is a maintenance nightmare, and I know this from experience! Thanks for the comment. – Josh Stodola Jun 4 at 15:17
Browser detection? See the accepted answer - there's no browser detection going on, and no future browser will break that code unless it also breaks with the W3C and doesn't do it the IE way either. Also, it more than likely performs better, as it's using the browser-native support for having multiple handlers for a single event, rather than chaining a bunch of function calls together. I've been writing javascript since the 90's too, and this is definitely not best practices. I'm not convinced it ever was. – Joel Mueller Jun 4 at 18:35
...although your approach would make a good fallback if you have users with IE 4 or Netscape 4, I guess. But I would only use that approach for those browsers, and personally I'm not very concerned about supporting 12-year-old browsers. – Joel Mueller Jun 4 at 18:54
Even if its not "browser detection" per se, you still have to target separate interpreters in one codebase (and assume their expectations will not change). That is, and always will be, a bad programming practice. It's not easy to maintain, and it doesn't make any sense to a pragmatic programmer. To illustrate why this sucks, try doing using an inline function. You can't without duplication and/or passing strings around specifiying which event you are trying to use (another bad practice). You don't have to like my function, but at least appreciate its reliability and simplicity. – Josh Stodola Jun 4 at 19:56
show 8 more comments

Your Answer

Get an OpenID
or

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