Most voted "masked-input-plugin" questions
Masked input a plugin from the jQuery javascript library. It allows users to easily enter with a fixed width input, where they would like their users to enter a data in a given format (dates, phone numbers, etc).
Learn more…3 questions
Sort by count of
-
6
votes5
answers27365
viewsRemove jquery field mask
I have this code to put mask on the field: (function ($) { $(function () { $("#txtCnpjPesquisa").mask("99.999.999/9999-99"); }); })(jQuery); Now here I must pass the field…
-
5
votes1
answer438
viewsHow to lock cursor drive in Masked input?
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…
-
0
votes1
answer291
viewsHow to import external Javascript and put masks on inputs?
Hello, all right? I saw some tutorials on the internet to put masks input in HTML, and as I am new in Javascript I imported the external library as shown below, but I must have imported wrong or…