How can I prevent a #b click from executing the #link click, 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....
asked by
17.12.2015 / 14:21