How to get the status (invalid, dirty, touched) for user input email with AngularJS

1 Answer

0 votes
<!DOCTYPE html>
<html>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular.min.js"></script>
<body>

<form ng-app="" name="testForm" ng-init="txt = 'test@email.com'">
<p>Change the email address and see the status chages below:</p>
Email: <input type="email" name="emailAddress" ng-model="txt" required>

<p>Valid: {{testForm.emailAddress.$valid}} (true = value is ok)</p>
<p>Dirty: {{testForm.emailAddress.$dirty}} (true = value has been changed)</p>
<p>Touched: {{testForm.emailAddress.$touched}} (true = the email field has been in focus)</p>

</form>

</body>
</html>

<!--
run:

Change the email address and see the status chages below:

Email: test@email.com

Valid: true (true = value is ok)

Dirty: false (true = value has been changed)

Touched: false (true = the email field has been in focus)

-->

 



answered May 25, 2017 by avibootz

Related questions

1 answer 284 views
1 answer 282 views
1 answer 273 views
1 answer 345 views
1 answer 298 views
1 answer 294 views
...