<input type="email" name="email" ng-model="contact.email" ng-required="true" ng-model-options="{ updateOn: 'blur' }"> <div class="alert alert-danger input-error" ng-show="ContactForm.email.$dirty && ContactForm.email.$invalid"> <button type="button" class="close" data-dismiss="alert">×</button> Введите корректный Email </div> There is such a code. Now it works like this: update the page - all the rules, click on the field, enter something - an alert-danger error pops up. How to make it pop up only after the end of the input? ng-model-options="{ updateOn: 'blur' }" did not help.