Javascript to accept 16 characters(all numbers), not less or not more
<div class="col-xs-4">
<div style="text-align:left;" class="form-group">
<label for="credit0_number">Credit Card Number</label>
<input type="number" class="inp form-control" id="credit0_number" name="credit0[number]" >
</div>
</div>
I tried maxlength = '16'
but it did not work I also did min="16" max = "16"
, it didnt work as well what can I do?