Reputation: 11
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
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