if i put event on parent then it also trigger on its child. how to stop trigger event on child
http://jsfiddle.net/nsoni/XLHKL/1/ is fiddle.
jquery:
$('.ful').on('click',function(){
$('ul').show();
});
$('.ful').dblclick(function(){
$('ul').hide();
});
$('.ful').mouseenter(function(e){
$('.tip').show();
});
$('.ful').mouseout(function(e){
$('.tip').hide();
});
$('ul').mouseenter(function(e){
e.stopImmediatePropagation();
$('.tip').hide();
});