I am trying to associate an event handler with a click function using zepto.js. Usually in jQuery, I can simply say return false, and the actual click will never pass. Does Zepto support this? And if so, how to get around this?
To duplicate the behavior of the return value false in the jQuery event handler, you need to call event.preventDefault()and event.stopPropagation().
event.preventDefault()
event.stopPropagation()