<div id="firstDiv" style="width:1000px;height:600px;">
<div id="secondDiv" style="width:200px;height:200px;"></div>
</div>
Both DIVs have click() events. When I click secondDiv, the click-event for firstDiv is also fired (I guess that is logic since I also clicked within firstDiv's borders). I however only want to fire the click-event for the DIV that I actually had my mouse over upon clicking.
How can I accomplish that?