How can i not let the click event fire on child div.
<div id="div">
<div id="first"></div>
<div id="last"></div>
</div>
$('#div').click(function(e){
//if e.target were object
if(!e.target.is('#first')){
//story
}
});