I mostly used ng-change but this time ng-change won't trigger It has also ng-model and also it is inside my app and controller. Same syntax for what I use in other ng-change. I got 3 days debugging this but still i cannot find the solution.
Here is the input:
 <input type="text" class="form-control" ng-change="search()" ng-model="count_time">
Here is the controller:
var app = angular.module("myCurriform", []);
    app.controller("standardCtrl", function($scope,$http,$filter,$location,$window) {
      $scope.search = function() {
        console.log($scope.count_time);
      };
    });
 
     
    