What is a novalidation attribute in forms, html5? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

What is a novalidation attribute in forms, html5?

25th Apr 2021, 3:13 PM
Zool Jam Baq
Zool Jam Baq - avatar
2 Answers
+ 2
You must mean "novalidate" instead of "novalidation". Novalidation is not an attribute of form elements in HTML5. The novalidate attribute is a boolean attribute. When present, it specifies that the form-data (input) should not be validated when submitted. I copied that from: https://www.w3schools.com/tags/att_form_novalidate.asp Try it for yourself at: https://www.w3schools.com/tags/tryit.asp?filename=tryhtml5_form_novalidate See how differently the form behaves when submitting an invalid email address with and without the novalidate attribute.
26th Apr 2021, 12:46 PM
Josh Greig
Josh Greig - avatar
0
Oh thank you
26th Apr 2021, 12:48 PM
Zool Jam Baq
Zool Jam Baq - avatar