simple form input request in angular

you can try adding ngChange and then check the length

<input type="text" ng-model="checkname" ng-change="checkname()">

then in your controller

$scope.checkname = function(){
    //check the length of your variable and do something
}

Browse More Popular Posts

Leave a Comment