amees_me
amees_me

Reputation: 855

AngularJS: Bind multiple elements with ngModel

I would like to validate multiple elements with ng-model. When every single one of them is true, perform an action.

Is this possible?

Upvotes: 0

Views: 496

Answers (1)

aludvigsen
aludvigsen

Reputation: 5981

You can use AngularJS built-in validation.

Here is a good resource describing how to use it:
http://scotch.io/tutorials/javascript/angularjs-form-validation

Upvotes: 1

Related Questions