I'm inserting an img tag into my document with the new Element constructor like this (this works just fine):
$('placeholder').insert(new Element("img", {id:'something', src:myImage}))
I would like to trigger a function when this image loads, but I can't figure out the correct syntax. I'm guess it's something like this (which doesn't work).
$('placeholder').insert(new Element("img",
{id:'something', src:myImage, onload:function(){alert("MOO")}}))
I'm hoping to do this in the same line of code and not to have to attach an event observer separately.
EDIT: The event needs to be registered when the element is created, not after. If the image loads before the event is attached, the event will never fire.