Below is my angularjs code: I am not able to clear inputComment field after form submit.
Here i am able to add record successfully but after adding record i am trying to clear the input field but i am not able to do it.
HTML code:
<body ng-app="taskDemo" ng-controller="taskController">
    <div class="widget-body">
        <form class="add-task" ng-if="addNewClicked" ng-init="addNewClicked=false;">
        <div class="">
            <div class="input-group">
                <input name="comment" ng-model="inputComment" type="text" class="form-control"   > 
                    <div class="input-group-btn">
                        <button ng-click="addTask(inputComment)" type="submit" class="btn btn-default">
                            <i class="glyphicon glyphicon-plus"></i> Add New Task
                        </button>
                    </div>
            </div>
        </div>
        </form>
    </div>
</body>
JS Code:
<script type="text/javascript" src="js/angular.min.js"></script>
<script type="text/javascript" >
        app = angular.module('taskDemo', []);
        app.controller('taskController', function($scope, $http){
                $scope.addTask = function (task) {
                $http.post("ajax/addTask.php?task="+task)
                    .success(function ($response) {
                       getTaskList();                 
                    });
                 $scope.inputComment = '';  
            };
        }
    </script>
 
     
    