Advertisement
Home Open Editor ❯

HTML <form> novalidate Attribute

Example

<form novalidate action="action.php">

Try this code ❯

Meaning

The novalidate is Boolean attribute determines whether or not form validation should be applied on the elements within.

By default, validation is enforced unless overridden by this attribute on the form level or a formnovalidate attribute on a form element.


Standard Syntax

HTML: <form novalidate>
XHTML: <form novalidate="novalidate">


Advertisement

Attribute Values

Value Description
novalidate This is a boolean attribute, the presence of a boolean attribute on an element represents the true value, and the absence of the attribute represents the false value.
Home Open Editor ❯
Advertisement