Here's a fiddle. jQuery's dblclick works for me on both FF and IE9. Tested: "the event is fired only when the double click STARTS and ENDS inside the DIV"
$("#test").dblclick(function(event) {
event.stopPropagation();
$(this).css({'background-color': 'red'});
});