I'm adding an event observer to one image in order to know when it is loaded, it works fine in firefox and safari, but it doesn't work in Opera.
The code is like this
$("element-id").observe("load", myFunction);
I also tried with Event.observe('load', 'element-id', myFunction) and it also works in FF and Safari, but not in opera.
Is there anyway to make it work in Opera?