子リンクをクリックしたときに親イベントが起動するのを止めたい。ここに私のコードがあります:
$('.list_row_inputtype').on('click',function(event) {
$(this).find('a.link_to_fire').click();
event.stopPropagation();
return false;
});
<div class="list_row_input_type unread">
<a href="#" onclick="toogleRead(); return false;" class="toogleRead"></a>
<a href="{corePath}/mails" class="link_to_fire">{emailLink}</a>
<div class="description"></div>
</div>
クリックする.toogleRead
と機能が起動しますが、ページにも変更され{corePath}/mails
ます。ページが変わるのを防ぎたい。