I am using an ng-repeat to display multiple textareas, and I need to be able to access the target element when the ng-change event is triggered.
<div ng-repeat="item in $ctrl.items">
<textarea ng-change="$ctrl.changed()"></textarea>
</div>
Is there a different method I can use to access the target element since I am unable to use $event?