Most voted "jquery-mask-plugin" questions
14 questions
Sort by count of
-
20
votes6
answers14943
viewsJS Mask for Hours Validation
I’m using in a project the jQuery Masked Input. I made a mask like this: <script> $(document).ready(function () { $("#QuantidadeHoras").mask("99:99"); }); </script> The <input>…
javascript jquery jquery-masked-input jquery-mask-pluginasked 9 years, 6 months ago Leonel Sanches da Silva 88,623 -
13
votes4
answers2688
viewsHow to add the ninth digit, fixed, using jQuery Mask?
How to add the ninth digit, in a fixed form, using the jQuery Mask? $('#telefone').mask('(00) 90000-0000'); This way I use is only optional.…
javascript jquery input mask jquery-mask-pluginasked 9 years, 6 months ago Marcelo de Andrade 7,261 -
5
votes1
answer111
viewsMoneymask Does Not Work on Device
The Jquery Plugin does not work on device, someone would know how to fix it? The point is, I researched about why the plugin Moneymask not work within the device and found that the plugins mask use…
-
4
votes2
answers1012
viewsValidation of Time
Guys I’m doing an hour validation on Javascript. I can’t type the following hours 14:00, 15:00, 16:00 until 20:00, but other hours I can get. I’m doing like this: var mask = "HH:MM", pattern = {…
-
3
votes2
answers775
viewsMask problem in jQuery
I wonder if it is possible to make a more complete mask for the date field using this plugin(jQuery-Mask) for example the user manages to put in the month 99 field when in fact the month only goes…
jquery-mask-pluginasked 8 years ago Felipe Henrique 2,135 -
3
votes1
answer830
viewsI cannot change the validation mask by clicking on a Radiobutton
I am trying to make a mask for CPF and CNPJ within the same field, the user can choose whether to fill the CPF or CNPJ through two Radiobuttons, but the problem is that I can’t change the mask of…
-
3
votes1
answer378
viewsChanging Mask using Jquery Mask Plugin?
I am creating a Web system and in this system there is the phone field, in this phone field, the user can put an 0800 or else a standard conventional phone DDD-Suffix-Prefix. Even all right, I…
jquery-mask-pluginasked 7 years, 4 months ago Fernando Henrique Gonçalves 145 -
1
votes1
answer641
viewsBirth date validation with jQuery
I’m wearing this plugin (jQuery Mask Plugin) to be able to make a mask in my form, however I have a problem in the field date of birth, because it happens the following, the user can type any day,…
-
1
votes2
answers2216
viewsproblem with Jquery-Mask
I’m having a problem creating a mask for a field that should receive both a Cpf and a cnpj it works normal as long as the user does not copy and paste the cnpj, when it copies cpnj to the blank…
-
1
votes2
answers458
viewsJquery-Mask plugin does not work
I’m having trouble inserting a mask into an input, follow my codes: My login screen I want to insert the mask: <?php /* * Create by Andre Tohouca Lacomski on 28/03/2019 */ defined('BASEPATH') OR…
-
0
votes4
answers3827
viewsPercentage Mask
I need a percentage mask with the library jQuery Mask Plugin v1.5.4. What I am trying to do is that the user can report a value from -99.99 to 99.99. I’m trying like this:…
-
0
votes1
answer1036
viewsjQuery Mask does not work
I’m trying to apply this mask on my form but it’s not working: https://igorescobar.github.io/jQuery-Mask-Plugin/docs.html I did everything as taught but the mask does not work, I’m trying to apply…
jquery-mask-pluginasked 6 years, 11 months ago Daniel Fortunato 71 -
0
votes1
answer279
viewsHow to format a field from a Jquery Datatable to Money format using the Jquery Mask Plugin?
I need to format the fields of a DataTable jQuery for currency format, while loading the Datatable, but I’m not getting it. I’m using the Jquery Mask Plugin: { data: 'ValorParcela', title:…
-
-3
votes1
answer66
viewsDynamic mask for CPF, CNPJ and CEI fields
Hello, I looked for this doubt in the questions, but I could not find it. Well, I would like to make a field to have the masks of CPF and CNPJ and CEI. depending on the number of characters typed.…