I know how to react to user input in a textarea with ng-change in AngularJS. But how can I get the current input inside the Angular controller? I am missing something like <
ng-model
It'll store the value of an input, textarea, or select.
Your html should be like this:
Then in your controller you can reference that with $scope.myValue
$scope.myValue
Hope that helps! :)