Answers for "validation in html for with minlength and maxlength"

1

Validate length with html

<--html forms min. charcter-->
<input pattern=".{3,}"   required title="3 characters minimum">
<input pattern=".{5,10}" required title="5 to 10 characters">
Posted by: Guest on July-28-2020

Code answers related to "validation in html for with minlength and maxlength"

Browse Popular Code Answers by Language