vote up 2 vote down star
3

Does anybody know of a method to trigger an event in Prototype, as you can with jQuery's trigger function?

I have bound an event listener using the observe method, but I would also like to be able to fire the event programatically.

Thanks in advance

flag

2 Answers

vote up 7 vote down check

event.simulate.js fits your needs.

I've used this several times and it works like a charm. It allows you to manually trigger native events, such as click or hover like so:

$('foo').simulate('click');

The great thing about this is that all attached event handlers will still be executed, just as if you would have clicked the element yourself.

For custom events you can use the standard prototype method Event.fire().

link|flag
Exactly what I was looking for, thanks very much – Neil Aitken Jan 20 '09 at 10:49
vote up 3 vote down

I don't think there is one built in to Prototype, but you can use this (not tested but should at least get you in the right direction):

Element.prototype.triggerEvent = function(eventName)
{
    if (document.createEvent)
    {
    	var evt = document.createEvent('HTMLEvents');
    	evt.initEvent(eventName, true, true);

    	return this.dispatchEvent(evt);
    }

    if (this.fireEvent)
    	return this.fireEvent('on' + eventName);
}

$('foo').fireEvent('mouseover');
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.