Is there any way to bind multiple functions to ng-click? How to do that? If not possible, what is the alternative way?
<input type="radio" name="op1" ng-click="chkVal()" ng-value="">
I have two functions. chkVal() and deActivate(). I want to check the value and disable the radio with one click.
It may achieve with one function, but I want to know how to use multiple functions.
Thank you