Sometime during the last month, it seems, the onload event stopped working for images. Will it be back, or was its removal intentional?
CODE
stdin:stdin:1018: <img src="..." onload="...">
^^^^^^
WARNING: stdin:stdin:1018+55 - 61: removing unknown attribute onload on img
This is actually how we were using it in our app before, with success:
CODE
if (el.addEventListener) {
el.addEventListener("load", fn, false);
} else if (el.attachEvent) {
el.attachEvent("load", fn);
}