> I'd argue that it's a better pattern to have a handler method that calls the > other method. It's more transparent that this is what it's doing than adding > a lambda function that returns false.
Well taken, but the example for $lambda in the docs uses it for exactly this purpose. :P > By adding a 'click' event that returns false, you're going to stop > the click event even if you later remove your click handler. Not if you use removeEvents instead of removeEvent. --Sandy
