Bummer! This is just a preview. You need to be signed in with an account to view the entire instruction.
Well done!
You have completed (UPI) Chapter 10: Utilizing Forms with JavaScript!
Instruction
Using Built-in Form Validation
One of the most significant features of modern form controls is the ability to validate most user data without relying on JavaScript. This is done by using validation attributes on form elements. We've seen many of these earlier in the course, but to recap:
-
required: Specifies whether a form field needs to be filled in before the form can be submitted.
- minlength and maxlength:...