Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

angular.js validation error message

Tags:

angularjs

I have searched and followed the angular code for a long time and cant find where this error message is coming from. I know the validation works but my code only has this:

<span class="error" ng-show="myForm.input.$error.required">
        Required!</span>
      <span class="error" ng-show="myForm.input.$error.email">
        Not valid email!</span></br> 

but this error comes up:enter image description here

I cant even find where a concatenation might produce this. The word "Please" is not even in the angular code.


1 Answers

The browser is generating this message, because of HTML5 support of "type='email'".

like image 94
Mark Rajcok Avatar answered Aug 07 '26 02:08

Mark Rajcok