> I know how to do it, but I'm asking if there's a built-in way to do
> this:
> addEvent('click', this.doSomething.returnFalse(this));
addEvent('click',doSomething).addEvent('click',$lambda(false));
The default behavior will be canceled even if doSomething() returns
true. This conforms with your original requirement to deaden default
hrefs on links without custom methods and without changing anything
within existing/library methods. I don't know if your requirements
have expanded from there.
--Sandy