Filter Type: All Time (0 Results) Past 24 Hours Past Week Past month Post Your Comments?
All Time (0 Results)
Past 24 Hours
Past Week
Past month
So when a user submits a form it checks for phone number format because we pass a regex of a phone number in pattern attribute of HTML input. But the only pattern is not sufficient to fulfill our requirement. we need an HTML tag which is input type=”tel”, which is used for the telephone.
Define the HTML elements with Telephone Input field where the error/success message will be shown. Use the isValidNumber method to check whether the user enters a valid telephone number based on the country dial code. On the blur event, the telephone number validation function will trigger.
The telephone input type is used in HTML using the < input type=tel>. Using this, allow the users to add telephone number. Note − The input type tel is only supported in Safari.. Example. You can try to run the following code to learn how to use input type tel to allow user input in the form of a telephone number −
In this step, you have to create a form using formGroup and ngSubmit directives, define the phone number input field using the form control name directive. Also, define the inline phone number validation with required and 10 digits mobile number validation message. Now, open and update code in src/app/app.component.html file.
The pattern is a regex which checks for the format of the value which we put in the HTML input. So when a user submits a form it checks for phone number format because we pass a regex of a phone number in pattern attribute of HTML input.