When I use .bind to bind event on child and parent, child event can stop event propogation with return false; But when I use delegate, return false; does not stop event prop
e.stopPropagation() won't work in this case. Use e.stopImmediatePropagation() instead. Here's a fiddle
e.stopPropagation()