Ben Sweet
Ben Sweet

Reputation: 11

How to validate input text fields like phone number, numeric fields and email validation using typescript in ionic 3?

I'm trying develop an ionic 3 android application. Now i need to validate input fields using typescript only not javascript.

Upvotes: 1

Views: 865

Answers (1)

JGFMK
JGFMK

Reputation: 8904

Check out these links:

input:required:invalid, input:focus:invalid {
 background:red;
}
<input type="email" name="email" required placeholder="Enter a valid email address">

Upvotes: 1

Related Questions