Disable validation of HTML form elements

If you want to disable client side validation for a form in HTML, add the novalidate attribute to the form element. Ex:

<form method="post" action="/foo" novalidate>...</form>

See https://www.w3.org/TR/html5/sec-forms.html#element-attrdef-form-novalidate

Leave a Comment