I have a big div with some links inside, I'd like to have the big div clickable AND links inside too, I did this :
html :
<div class="clickable">
some text...
<a href="myurl1">Link 1</a>
<a href="myurl2">Link 2</a>
some text...
</div>
jquery :
$('.clickable').click(function() {
alert('Hello');
});
If I click on a link inside the clickable div, I got the 'Hello' alert first and then the new page is loaded : is that possible to get the anchors working without triggering the outer div click handler ?