El atributo novalidate de HTML es un atributo booleano que se utiliza para especificar que los datos del formulario no deben validarse al enviar el formulario. Se puede utilizar con el elemento HTML <form>.
Se puede usar en situaciones en las que desea que el usuario guarde el progreso de la presentación del formulario. o Si la validación del formulario está deshabilitada, el usuario puede guardar fácilmente el formulario y continuar y enviar el formulario más tarde.
Sintaxis:
<form novalidate>
El siguiente ejemplo ilustra el atributo novalidate en HTML:
Ejemplo:
HTML
<!DOCTYPE html> <html> <body style="text-align:center;"> <h1 style="color:green;"> GeeksforGeeks </h1> <h2> When to use the novalidate attribute in the HTML Form? </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:
Publicación traducida automáticamente
Artículo escrito por skyridetim y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA