This is a text-field. See..I set the maxlength property to 10. So, only 10 characters can be entered
<input maxlength="10" id="txt_name" name="txt_name" type="text" required="required"/>
This is a number field. I want this also to have maxlength of 10 so that the users can enter their 10 digit mobile number. This restricts users to enter additional numbers.
<input id="txt_mob" name="txt_mob" type="number" maxlength="10"/>
But the maxlength doesnpt work with number fields. Why?? Is there any way to do this without using Javascript or jQuery?
Here's a FIDDLE.