In response to StackOverflow question: http://stackoverflow.com/questions/26052442/jquery-when-mousedown-on-child-object-trigger-only-parent-object-not-child
<div class="wrapper">
<h2>Restricted<br />propagation</h2>
<div class="parent">
<div class="restricted child"></div>
</div>
<p>Restricted child's event is halted, but the parent event is triggered manually.</p>
</div>
<div class="wrapper">
<h2>Natural<br />propagation</h2>
<div class="parent">
<div class="child"></div>
</div>
<p>Unrestricted child's event will fire and the parent event is fired naturally.</p>
</div>