Javascript examples for DOM HTML Element:Input Number
Check value from number Input field
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> </head> <body> <input type="number" max="5" oninput="checkLength(this)"> <script type="text/javascript"> function checkLength(elem) {/*from w w w . jav a2 s.c om*/ if (elem.value > 5) { console.log('Max value is 5') elem.value = ''; } } </script> </body> </html>