Pressing on list item option button, also triggers item's method

<ion-item ng-click="parent()">

    <ion-option-button ng-click="child()"></ion-option-button>
</ion-item>

pressing child() also executes parent(). How to prevent that?

Any help would be highly appreciated.

Use $event.stopPropagation() in ng-click to prevent event bubbling

Thank you so much @yurinondual :smile: