I'm using the jQuery Masked Input plugin.
<input name="dueDate" class="form-control input-mask-date" type="text" placeholder="Data de Vencimento" data-parsley-trigger="keyup" required="">
$(".input-mask-date").mask("99/99/9999");
However, I get to click on the corner, stay with the cursor on the last character of the mask.
How can I block this? Or how do you always return the cursor to the first character when you click?