According to the jQuery docs
Returning false from an event handler will automatically call event.stopPropagation() and event.preventDefault(). A false value can also be passed for the handler as a shorthand for function(){ return false; }. So, $("a.disabled").on("click", false); attaches an event handler to all links with class "disabled" that prevents them from being followed when they are clicked and also stops the event from bubbling.
So when I create a click event:
$('#sidebar').on("click", ".toggle", function() {
$(this).parents("p").next("ul").toggle(400);
return false;
});
I would expect the click to not register since it would not have a chance to propagate from .toggle to #sidebar
The only explanation I've come up with would be that if this was allowed to happen it would make the on() function fairly pointless, so perhaps it's bypassed in this case?
What rules does on() follow as far as bubbling?