I have a text box that changes value based on mousewheel. (increments/decrements numbers in it)
I achieve this via jquery.
But Angular doesn't respond to the changes made via jquery.
<input ng-model='data'></input> {{data}}
Only works if I manually enter the value.
Is there a way to have Angular respond to jquery changing the input value?