We want to include a maps from Google Maps API in our document. The documentation tells to initialize the map with a function called by the onload() event of the body.

The ordinary way to call:

<body onload="initialize_map();">

This doesn't work out for us because we're using Template::Toolkit and the <body> tag is already included in our wrapper. In short: The <body> tag is already printed when our javascript code starts running.

I tried something like this but it does only work for onclick, not onload. I guess that's because the javascript code is beneath the <body> tag itself.

var body = document.getElementsByTagName("body")[0];

body.addEventListener("load", init(), false);

function init() {
        alert("it works!");
};

Any help how to fire up a Google Maps map appreciated!

link|improve this question

69% accept rate
feedback

3 Answers

body.addEventListener("load", init(), false);

That init() is saying run this function now and assign whatever it returns to the load event.

What you want is to assign the reference to the function, not the result. So you need to drop the ().

body.addEventListener("load", init, false);

Also you should be using window.onload and not body.onload

Also addEventListener is not cross browser friendly.

link|improve this answer
1  
For IE it would be attachEvent. quirksmode.org describes it very well: quirksmode.org/js/events_advanced.html – Felix Kling Feb 22 '11 at 18:27
feedback
up vote 1 down vote accepted

As we were already using jQuery for a graphical eye-candy feature we ended up using this. A code like

$(document).ready(function() {
    // any code goes here
    init();
});

did everything we wanted and cares about browser incompatibilities at its own.

link|improve this answer
feedback

Simply wrap the code you want to execute into the onload event of the window object:

window.onload = function(){ 
   // your code here
}
link|improve this answer
There are 2 potential problems with this approach. 1) You over-write any other onload events that may have been attached, and 2) onload may have already fired depending on where you put this code, and as a result may never fire – Matt Feb 22 '11 at 19:19
feedback

Your Answer

 
or
required, but never shown

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