6
As I can prevent the click of the #b it runs the click of the #link, I would like it to alert only "b"
$("#link").on('click',function(){ alert('link') });
$("#b").on('click',function(){ alert('b') });
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<a id="link">A<b id="b">b</b></a>
Related: http://answall.com/a/42112/129
– Sergio