La etiqueta <form> en HTML se usa para crear un formulario para la entrada del usuario. Hay muchos elementos que se utilizan dentro de la etiqueta de formulario. Por ejemplo: <entrada>, <área de texto>, <botón>, <seleccionar>, <opción>, <grupo de opciones>, <conjunto de campos>, <etiqueta>.
El atributo novalidate de HTML <form> se utiliza para especificar que los datos del formulario no deben validarse al enviar el formulario. Es un atributo booleano.
Sintaxis:
<form novalidate>
Ejemplo: Este ejemplo ilustra el uso del atributo novalidate en el elemento de formulario.
HTML
<!DOCTYPE html> <html> <head> <title> How to specify that the form should not be validated when submitted in HTML? </title> </head> <body style="text-align:center;"> <h1 style="color: green;"> GeeksforGeeks </h1> <h2> How to specify that the form should not be <br>validated when submitted in HTML? </h2> <form action="#" method="get" target="_self" novalidate> Name: <input type="text"> <input type="submit" id="Geeks" name="myGeeks" value="Submit@geeksforgeeks" formTarget="_blank"> </form> </body> </html>
Producción:
Navegadores compatibles:
- Google Chrome 10.0
- Internet Explorer 10.0
- Firefox 4.0
- Ópera 10.6