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 propagation.
html:
<div class="parent">
    <div class="child"></div>
    <div class="child"></div>
</div>
js:
$('.parent').delegate('.child','click',function(e){
    alert('child click');
    return false;
});
$('.parent').bind('click',function(e){
    alert('parent click');
});
 
     
     
     
     
     
    