Javascript examples for DOM HTML Element:Button
The formNoValidate property sets or gets whether the form-data should be validated on submission.
This property is only used for buttons with type="submit".
Set the formNoValidate property with the following Values
Value | Description |
---|---|
true|false | Sets whether the form-data should be validated on submission |
A Boolean, returns true if the form-data should not be validated, otherwise it returns false
The following code shows how to check if the form-data should be validated or not:
<!DOCTYPE html> <html> <body> <form action="#" method="get"> E-mail: <input type="email" name="userid"><br> <button id="myBtn" type="submit" formnovalidate>Submit</button> </form>/*w w w .jav a 2s . c o m*/ <button onclick="myFunction()">Test</button> <p id="demo"></p> <script> function myFunction() { var v = document.getElementById("myBtn").formNoValidate; document.getElementById("demo").innerHTML = v; } </script> </body> </html>