Override HTML5 validation



To ignore HTML validation, you can remove the attribute on button click using JavaScript.

Uer removeAttribute() to remove an attribute from each of the matched elements.

<!DOCTYPE html> <html>    <body>       <form>          First Name: <input type = "text" id = "fname" value = "Amit" required>          <input type = "radio" onclick = "dislay('fname')"><br>       </form>       <script>          function display(id) {             document.getElementById(id).value = document.getElementById(id).removeAttribute('required');          }       </script>    </body> </html>
Updated on: 2020-01-28T10:05:05+05:30

1K+ Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements