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)
|
Can someone please explain what the difference is between the following two ways to specifying onload callback functions in javascript?
AND
| |||
|
feedback
|
|
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:
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, 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
Note that it is "onclick", likewise you'd use "onload", "onchange", etc. In most other browsers (including IE 9), you use
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:
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:
| ||||
|
feedback
|
|
As far as I know, the DOM "load" event still does only work very limited. That means it'll only fire for the However, you cannot assign a | |||
|
feedback
|