This page defines an onload function in the global scope:
function onload() {
  alert('onload called');
}

Is onload called when the page loads?

Firefox 2Internet Explorer 7Opera 9.24Safari 3
YesNoNoNo
If this page were to run the following code:
window.onload = function () {
  alert('onload called');
}

Is onload called when the page loads?

Firefox 2Internet Explorer 7Opera 9.24Safari 3
YesYesYesYes