> I think I get it:
> $('el').addEvent('click', fn.bind( $('el')) );
> This would pass the event to the handler, and I am all set.
Overkill; you seem to be changing your requirements around.
If you *don't* need to pass a second argument in addition to the
event, you just
addEvent( 'click', fn )
fn(e) {
// e is the Mootools event
// e.event is the DOM event
}
-- S.
