次のような要素に 2 つのイベントをバインドしています。
<div class="view">
<input type="checkbox" class="edit">
</div>
$(function(){
$(".view").bind('dblclick', show1);
$(".edit").bind('click',show2);
});
function show1(){
console.info('here');
}
function show2(){
console.info('hi');
}
Firefoxでは正常ですが、Chromeではチェックボックスをクリックすると必ずdivのイベントが呼び出されます。
参考までに: http://jsfiddle.net/dMcnJ/1/