I have an element inside a container with ng-click, that should not execute this click action. It has the structure similar to this:
<div class="container" ng-click="takeSomeAction()>
<p>Some content</p>
<a class="btn" ng-href="#{{whatever}}">button content</a>
</div>
How to prevent executing takeSomeAction()
when you click the button?