Hello I need help for angularjs.
I want to trigger ng-change on input type number input field.
<input
ng-required="true"
ng-change = "onChangePrePay()"
type="number"
ng-model="entry.team.prepaidEntriesNum"
/>
but on-change is triggered only when input field loses focus. Any idea how to override this behavior. It's totally unexpected.
ng-changein it