Well, we already know that with HTML5 from constraints, client side form validation has become super easy. All we have to do is use attributes like required
, maxlength
, pattern
, step
, etc. and/or the correct form type like email
, phone
, number
, etc. and then once the user submits the form, the browser prompts invalid messages if the form is not entirely valid. Although it might not really be a requirement but from a coolness perspective I thought I’ll share the fact that the error messages can be customized.
Continue reading “Custom Validation Messages for HTML5 Form Constraints”