Angularjs Examples

AJS Examples


AngularJS Input Type Email

The AngularJS input types are HTML input element control and used togather with ng-model directive. AngularJS input type Email can be decorate with various AngularJS arguments like name, ng-required, ng-minlength,ng-maxlength,ng-pattern and ng-change.

Syntax

AngularJS Input Type Email Arguments

Here is a list of AngularJS Input Type Email Arguments.

DirectivesDescription
ng-modelAngularJS expression to bind the email.
name (optional)Name of the control input control.
ng-minlength (optional)AngularJS expression sets the min validation constraint to the email.
ng-maxlength (optional)AngularJS expression sets the max validation constraint to the email.
ng-pattern (optional)Validate input type email with given match pattern.
required (optional)Validate input type email is required.
ng-required (optional)AngularJS expression ngRequired expression evaluates to true.
ng-change (optional)AngularJS expression to be executed when input value changes.

AngularJS Input Type Email Example

Above example will produce following output

See live Example