I want to fire my function Automatically when i complete my typing in ng-model. I applied 2 different technique but nothing work 1. Approch
<div class="col-sm-6">
<input type="text" class="form-control" ng-model="testing" placeholder="Name" maxlength="50" /></div>
<span ng-if="testing.length != null " ng-show="Add()"></span>
Approach
<div class="col-sm-6"> <input type="text" class="form-control" ng-model="testing" placeholder="Name" maxlength="50" /></div> <span ng-show="testing && Add()"></span>
Both fire my function with single character. I want to fire Add() function when my typing is completed. I do not want to use button.
Try following 2 sample codes.
I hope following sample code could help you solve the problem you were facing
or you could do like this