I would like to add an event listener/handler to be prepended before an existing event handler in Prototype. Here is the example:
<form ... onsubmit="alert('foo')" id="f1">
$('f1').observe("submit", function() {
alert('do this before foo');
});
</form>