5
I’m using the plugin jQuery Masked Input.
<input name="dueDate" class="form-control input-mask-date" type="text" placeholder="Data de Vencimento" data-parsley-trigger="keyup" required="">
And I activate the Masked input through the class javascript.
$(".input-mask-date").mask("99/99/9999");
However, I can by clicking on the corner, stick around with the cursor in the last character of the mask.
How can I block this? Or how to always return the cursor to the first character when clicking?
So far it has solved the problem better.
– WMomesso