I have a div representing a panel that acts as a link. This panel contains a button that triggers some Javascript.
How can I do so that the button does not activates that link ?
<a href="/some/page">
<div>
...
<button onClick="someFunction()">Click</button>
</div>
</a>