Say you attach several listeners to an event, for example you want a few things to happen on page load. What is the order of execution of the different listeners? You'd think that the listener attached first will execute first, followed by the second and so on... Well, yes, in FF, Opera, Safari on Windows, but not in IE.
The test
var i = 1, ol = document.getElementById('result'); for (i; i <= 10; i++) { YAHOO.util.Event.addListener(window,'load', function(num){ return function(){ ol.innerHTML += '<li>' + num + '</li>'; } }(i) ); }
Result in FF, O, Safari
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
Result in IE
- 1
- 2
- 4
- 6
- 8
- 10
- 9
- 7
- 5
- 3
Observation
Here you can try it out yourself
Try in IE. Reload. Reload again. Notice something? The order is not random. Always starts 1, 2, then goes through all even numbers until 10 then backwards - 9, 7, 5, 3 - all odd numbers.
Try with a bigger loop - still the same thing. Hmm, interesting... Maybe not something you'd like to rely on, but still...