I'm using jQuery Masked Input in a project. I made a mask like this:
<script>
$(document).ready(function () {
$("#QuantidadeHoras").mask("99:99");
});
</script>
The <input> only lets me fill in the...
The Jquery plugin does not work on device , would anyone know how to solve this?
The question is this, I looked into why the MoneyMask plugin did not work inside device and found that the plugins they use the Keydown event that...
Personal I'm doing a time validation in Javascript . I can not type the following hours 14:00, 15:00, 16:00 until 20:00, but other hours with you.
I'm doing this:
var mask = "HH:MM",
pattern = {
'translation': {...
I would like to know if it is possible to make a more complete masks for the date field using this plugin (jQuery -mask) for example the user can put in the field 99 month when in fact the month only goes to 12 and in the day field also the sa...
I'm creating a web system and in this system there is the phone field, in this phone field, the user can put a 0800 or a conventional standard phone DDD-Suffix-Prefix.
It's okay, I was able to create it with a if , but when typing the...
I'm 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 not change the mask of the field when alternating between a option or a...
I have a problem creating a mask for a field that should receive both a cpf and a cnpj it works normal since the user does not copy and paste the cnpj, when it copies the cpnj to the blank field it does not come complete but if you select what i...
I'm using this plugin (jQuery Mask Plugin) to be able to make a mask on my form, but I'm with a little problem in the date field, because the following happens, the user can type any day, month or year ex: 32/99/0001 because there is no month...
I need a percentage mask with the jQuery Mask Plugin v1.5.4 library.
What I'm trying to do is that the user can report a value from -99.99 to 99.99.
I'm trying like this:
$("#edtPercentual").mask("99,99%");
$("#edtPercentual").on...