My HTML is as follows:
<textarea ng-model="cancelMessage"></textarea>
<span {{100 - cancelMessage.length}} characters remaining</span>
In my controller I declare a variable as follows:
$scope.cancelMessage = '';
When I type in the text area, the number of characters remaining actually updates. However, when I try to access
$scope.cancelMessage
(via ng-click), the variable is still '' and not the text in the text area.