Is there a way in HTML5 forms to add a min and max character to a textarea? It seems I can apply it to a regular input using pattern.
<input pattern=".{3,}" title="3 characters minimum">
Am I looking at a jquery solution?
Is there a way in HTML5 forms to add a min and max character to a textarea? It seems I can apply it to a regular input using pattern.
<input pattern=".{3,}" title="3 characters minimum">
Am I looking at a jquery solution?
For max: see below code
Use
maxlength
for maximum character.Source: http://www.w3.org/TR/html5/forms.html#the-textarea-element
For min: source
Use Javascript as below:
use id attribute in
<textarea>
. Set id attribute to minle(for eg) ieid="minle"
and put following js code segment in your
form
tagThis allow user to input no. of characters from 80 to 200.
HTML5 solution, min 5, max 20 characters
just set the attribute maxlength="20" and minlength="5" to the textarea tag
http://jsfiddle.net/xhqsB/603/
HTML5 solution, min 5, max 10 characters
http://jsfiddle.net/xhqsB/102/