Disable HTML5 Validation
home
Run
screen_rotation
fullscreen
cloud_download
navigate_next
<!DOCTYPE html> <html lang="en"> <head> <title>HTML5 Example</title> </head> <body> <h3>With Validation</h3> <form > <!--none of the below will be validated--> <input type="email" value="test"/> <input type="url" value="test"/> <input type="submit" value="Submit"> </form> <h3>Without Validation</h3> <form novalidate> <!--none of the below will be validated--> <input type="email" value="test"/> <input type="url" value="test"/> <input type="submit" value="Submit"> </form> </body> </html>
<!DOCTYPE html> <html lang="en"> <head> <title>HTML5 Example</title> </head> <body> <h3>With Validation</h3> <form > <!--none of the below will be validated--> <input type="email" value="test"/> <input type="url" value="test"/> <input type="submit" value="Submit"> </form> <h3>Without Validation</h3> <form novalidate> <!--none of the below will be validated--> <input type="email" value="test"/> <input type="url" value="test"/> <input type="submit" value="Submit"> </form> </body> </html>
Copyrights@tutorialsplane.com