JavaScript Validation API with DOM

Language
  1. <!DOCTYPE html>
  2.  
  3.  
  4.     <p>Enter a number and click Here Button:</p>
  5.  
  6.     <input id="1" type="number" min="5" max="10" required>
  7.     <button onclick="myFunction()">OK</button>
  8.  
  9.     <p>If the number is less than 5 or greater than 10, an error message will be displayed.</p>
  10.  
  11.     <p id="test"></p>
  12.  
  13.     <script>
  14.         function myFunction() {
  15.             var inpObj = document.getElementById("1");
  16.             if (!inpObj.checkValidity()) {
  17.                 document.getElementById("test").innerHTML = inpObj.validationMessage;
  18.             } else {
  19.                 document.getElementById("test").innerHTML = "OK";
  20.             }
  21.         }
  22.     </script>
  23.  
  24. </body>
  25.  
  26. </html>

Note: Due to the size or complexity of this submission, the author has submitted it as a .zip file to shorten your download time. After downloading it, you will need a program like Winzip to decompress it.

Virus note: All files are scanned once-a-day by SourceCodester.com for viruses, but new viruses come out every day, so no prevention program can catch 100% of them.

FOR YOUR OWN SAFETY, PLEASE:

1. Re-scan downloaded files using your personal virus checker before using it.
2. NEVER, EVER run compiled files (.exe's, .ocx's, .dll's etc.)--only run source code.

Add new comment