I know there has been a lot of questions about overriding href or ng-click with the other but my question is different. I have some html code like this :
<tr ng-click="doSomething()">
<complicated html>
<a href="http://somelink">blablabla</a>
</complicated html>
</tr>
What I would like if possible : when a user click on the link, the ng-click is not triggered and the user only go to the link.
Is it possible to do that ? Other questions on stackoverflow ask about ng-click and href that are in the same tag but this isn't the case.
Thank you !