Below is the provided code snippet:
<div ng-click="grid.appScope.navToPage(row)"class="ui-grid-cell" ui-grid-cell style="cursor: pointer">
<div class="ui-grid-cell-contents">
<a ng-href="/mywebpage/2" target="_blank">
<span class="glyphicon glyphicon-new-window"></span>
</a>
</div>'
</div>
I am searching for a solution to click on the link inside the a
tag without triggering the ng-click
event attached to the enclosing div
. Is there an effective approach to achieve this functionality?