I have a Prototype code that is triggered upon \'load\' event:
Event.observe($(imageEl), \'load\', this.someFunction.bind(this));
When I
You should call your handler directly passing required arguments or trigger the native DOM event.
NOTE: prototype's fire and jquery's trigger create custom events, not native.
Read the following answers on how to trigger native events: