Edit in JSFiddle

/*
this binds the click, mouseover and double click event to the element with a class of container. What it does is simply output the type of event triggered inside the box
*/
$('.container').bind('click mouseover dblclick', function(evt_obj){
  $('.child').text(evt_obj.type);
});
<div class="container">
    <div class="child"></div>
</div>
.container{
    width: 200px;
    height: 200px;
    background: green;
}

.child{
   padding: 60px;
   font-weight: bold;
   font-size: 15px;
}