Why is Chrome is only calling the onerror event for the img element one time when all other browsers (IE7,8,9, FF, Opera, and Safari) all call it repeatedly?
Is ther
This is the correct behavior. You don't want to download the same image twice -- that's a waste of bandwidth.
What Chrome does it create an in-memory object and then will apply it to all images with the respective src.
If you need it downloaded twice, then create those objects through javascript and assign .onload=function() { .. } to each.