Disable HTML5 Validation
home
Run
screen_rotation
fullscreen
cloud_download
navigate_before
<!DOCTYPE html> <html lang="en"> <head> <title>HTML5 Example</title> </head> <body> <form novalidate> <!--validation disabled for email only--> <input type="email" novalidate/> <input type="url"/> <input type="submit" value="Submit"> </form> </body> </html>
<!DOCTYPE html> <html lang="en"> <head> <title>HTML5 Example</title> </head> <body> <form novalidate> <!--validation disabled for email only--> <input type="email" novalidate/> <input type="url"/> <input type="submit" value="Submit"> </form> </body> </html>
Copyrights@tutorialsplane.com