Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Seems the minlength attribute for an <input> field doesn't work.

Is there any other attribute in HTML5 with the help of which I can set minimal length of value for fields?

share|improve this question
so please correct the title – Tomas Apr 23 '12 at 13:57
Is it minlength or maxlength? – Madara Uchiha Apr 23 '12 at 13:57
2  
Not without JavaScript. – iambriansreed Apr 23 '12 at 13:59
It won't be the answer for every field, but if you just want to make sure a value is there you can use the "required" attribute. <input type="text" name="input1" required="required" /> – J.Money Aug 30 '12 at 22:55

3 Answers

up vote 66 down vote accepted

You can use the pattern attribute:

<input pattern=".{3,}" title="3 characters minimum">
<input pattern=".{5,10}" title="5 to 10 characters">
share|improve this answer
14  
+1 for using html5 instead of jQuery. I just wanted to add that the title attribute allows you to set the message to display to the user if the pattern is not met. Otherwise a default message will be shown. – J.Money Aug 30 '12 at 22:46

minLength attribute (unlike maxLength) does not exist natively in HTML5. However there a some ways to validate a field if it contains less than x characters.

An example is given using jQuery at this link : http://docs.jquery.com/Plugins/Validation/Methods/minlength

<html>
<head>
  <script src="http://code.jquery.com/jquery-latest.js"></script>
  <script type="text/javascript" src="http://jzaefferer.github.com/jquery-validation/jquery.validate.js"></script>
<script type="text/javascript">
jQuery.validator.setDefaults({
    debug: true,
    success: "valid"
});;
</script>

  <script>
  $(document).ready(function(){
    $("#myform").validate({
  rules: {
    field: {
      required: true,
      minlength: 3
    }
  }
});
  });
  </script>
</head>
<body>

<form id="myform">
  <label for="field">Required, Minimum length 3: </label>
  <input class="left" id="field" name="field" />
  <br/>
  <input type="submit" value="Validate!" />
</form>

</body>
</html>
share|improve this answer

That's because it's not minlength, it's just min="3". They added max despite already having a maxlength for some reason as well.

Min does not work on any of the major browsers except for Opera and Chrome so it's pretty much useless. The pattern method above is the best if you want HTML5 browse

share|improve this answer
1  
That's only for <input type="number"> – sandstrom Jun 28 '12 at 13:26
3  
The question is referring to the length of the input and not the range. min="3" is saying the value needs to be greater than the number 3 which doesn't apply to text fields. Max and maxlength are not the same! – J.Money Aug 30 '12 at 22:32

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.