> I just need the "return false" part for links, and having to keep > creating functions manually seems unnecessary.
The preferred way to do this for events is to use stop().
There are lots of ways to coerce a false result, though.
this.doSomething && false
this.doSomething() == {}
!(this.doSomething() || true )
!!this.doSomething().returnFalse (where returnFalse is a
purposely undefined key)
--Sandy
