I would like to do an equivalent of ng-change for the entire form whenever there is a change in one of its input fields.
ng-change
I know that since AngularJS 1.3
okay, super super late answer ... but this works pretty neat
// html ... // controller function $postLink() { ctrl.form.$$element.on('change', function () { console.log('fired'); }); }