Here is the html code snippet that I am working with:
<div class="parent"
ng-click="ParentClick()">
.
.
.
<div class="child" ng-click="ChildClick()">
Some Text
</div>
</div>
When clicking on Some Text
, both ParentClick()
and ChildClick()
methods are called. I am wondering if there is a way to disable the ParentClick()
event only when clicking on Some Text
, perhaps using CSS?