El atributo novalidate de HTML se utiliza para especificar que los datos del formulario no deben validarse al enviar el formulario . Es un atributo booleano. Se puede usar con el elemento <form> .
Aplicable:
Sintaxis:
<form novalidate>
Ejemplo: Este ejemplo ilustra el uso del atributo novalidate en el elemento de formulario.
html
<!DOCTYPE html> <html> <head> <title> HTML | novalidate Attribute </title> </head> <body style="text-align:center;"> <h1> GeeksForGeeks </h1> <h2> HTML | novalidate Attribute </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: los navegadores compatibles con el atributo novalidate se enumeran a continuación:
- Google Chrome 10.0
- Internet Explorer 10.0
- Firefox 4.0
- Ópera 10.6
Publicación traducida automáticamente
Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA