jquery Event.stopPropagation() seems not to work
Live events don’t follow the same event bubbling rules. See the documentation on live event handling. Quote from reference above: Live events do not bubble in the traditional manner and cannot be stopped using stopPropagation or stopImmediatePropagation. For example, take the case of two click events – one bound to “li” and another “li a”. … Read more