VOOZH about

URL: https://www.geeksforgeeks.org/html/html-form-novalidate-attribute/

⇱ HTML <form> novalidate Attribute - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

HTML <form> novalidate Attribute

Last Updated : 23 May, 2026

The novalidate attribute in the <form> tag is used to disable automatic form validation during submission. It allows the form to be submitted even if input fields contain invalid data.

  • Disables built-in HTML form validation.
  • Allows submission of incomplete or invalid form data.
  • Commonly used when validation is handled using JavaScript.

Syntax: 

<form novalidate>
<!-- form elements -->
</form>
Comment
Article Tags: