Answers for "min and max in input type number"

5

min length input html

<form action="/action_page.php">
  <label for="password">Password:</label>
  <input type="password" id="password" name="password" minlength="8"><br><br>
  <input type="submit" value="Submit">
</form>
Posted by: Guest on November-19-2020
1

min number input html

<form action="/action_page.php">
      <label for="myNumber">My Number:</label>
      <input type="number" name="myNumber" id="myNumber" min="5" max="15">
      <br><br>
      <input type="submit" value="Submit">
</form>
Posted by: Guest on May-07-2021
1

input type number max value validation

/* comman function for all input by joshi yogesh {[email protected]} */

$(function () {
   $( "input" ).change(function() {
   var max = parseInt($(this).attr('max'));
   var min = parseInt($(this).attr('min'));
   if ($(this).val() > max)
   {
      $(this).val(max);
   }
   else if ($(this).val() < min)
   {
      $(this).val(min);
   }       
 }); 
});
Posted by: Guest on January-24-2021

Code answers related to "min and max in input type number"

Browse Popular Code Answers by Language