I\'m using ng-options to select values from a pulldown. I\'d like to be able to compare the old value to the new value. ng-change works well for grabbing the new value of th
You can use something like ng-change=someMethod({{user.id}}).
By keeping your value in side {{expression}} it will evaluate expression in-line and gives you current value(value before ng-change method is called).