Can someone please explain what the difference is between the following two ways to specifying onload callback functions in javascript?

element.onload = callback

AND

element.addEventListener("load",callbak,false)
link|improve this question

feedback

2 Answers

up vote 9 down vote accepted

The former is equivalent to placing the javascript inline within the element's HTML. The advantage to this is that it is straightforward and easy to read and it is cross-browser - it will work in all user agents. The disadvantage is that you may only add one event listener of a given type to a given element. Observe:

element.onclick = function () { alert 'callback 1'; };
element.onclick = function () { alert 'callback 2'; };

If you were to click the target element, you would see an alert that says "callback 2". The second line overwrote the first one.

To reiterate, element.onclick = doSomething(); equals <div onclick="doSomething();">click me!</div>

The second method can add an unlimited number of event handlers to a given element and is considered "best practice". However, Internet Explorer implements javascript differently from pretty much every other browser. With Internet Explorer (versions less than 9), you use the attachEvent function, like so:

element.attachEvent('onclick', function() { /* do stuff here*/ });

Note that it is "onclick", likewise you'd use "onload", "onchange", etc. In most other browsers (including IE 9), you use addEventListener without the "on-" part of the event name, like so:

element.addEventListener('click', function() { /* do stuff here*/ }, false);

jQuery and other javascript frameworks encapsulate these differences in generic models so you can write cross-browser compliant code without having to provide both flavors of event listeners. Same code with mootools, all cross-browser and ready to rock:

element.addEvent('click', function () { /* do stuff with mootools! */ });

That said, you shouldn't run out and get a framework JUST for cross-browser event attachment. If that's all you need, you can easily roll your own:

function addEvent(element, evnt, funct){
  if (element.attachEvent)
   return element.attachEvent('on'+evnt, funct);
  else
   return element.addEventListener(evnt, funct, false);
}

// example
addEvent(myElement, 'click', function () { alert('hi!'); });
link|improve this answer
feedback

As far as I know, the DOM "load" event still does only work very limited. That means it'll only fire for the window object, images and <script> elements for instance. The same goes for the direct onload assignment. There is no technical difference between those two. Probably .onload = has a better cross-browser availabilty.

However, you cannot assign a load event to a <div> or <span> element or whatnot.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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