次の div とクリック リスナーがあります。
$('.right-col .modal-container').live('click',function(e) {
$(this).remove();
$('.right-col .modal-backdrop').remove();
});
<div class="modal-container">
....some other buttons and html elements inside
</div>
問題は、この modal-container 要素内のボタンをクリックすると、.modal-container でクリック機能もトリガーされることです。このカスケードを回避するにはどうすればよいですか?