jQuery-Mask-Plugin icon indicating copy to clipboard operation
jQuery-Mask-Plugin copied to clipboard

A jQuery Plugin to make masks on form fields and HTML elements.

Results 112 jQuery-Mask-Plugin issues
Sort by recently updated
recently updated
newest added

I want to pas phone numbers with different formats: '+{7}(000)000-00-00' and '8(000)000-00-00' How to do it with this mask?

Pattern I need in an input field: ("SS00 0000 0000 0000 0000 00"); Example: DE00 0000 0000 0000 0000 00 Copy pasted values are trimmed if longer than the above...

To begin, thank you for this plugin. #### Device Desktop #### Browser (and version)? Chrome Version 67.0.3396.99 (Build officiel) (64 bits) #### Functional `jsfiddle` exemplifying your problem: http://jsfiddle.net/nbcqvdsz/ #### Describe...

Hi igorescobar, I'm a fan of your jQuery-Mask-Plugin. However, it seems there is still a bug existing when you try to edit the input from the middle. For example with...

bug

#### Device Windows 10 #### Browser Chrome Versão 73.0.3683.103 (Versão oficial) 64 bits #### Versão do jQuery jquery 2.1.3 Gostaria que meu campo recebesse a máscara a partir do primeiro...

Is there a way to mask a zipcode+4 field so that the "-" is optional? If mask is set to 00000-9999, and the user types 12345 in the field, the...

Olá, Essa questão talvez tenha a ver com a #109 , mas como estava fechado e sem resposta abri uma nova issue. Estou tendo um problema com um campo de...

Hello I'm using the latest version of the plugin, but when I'm going to use setting up in a 1000ms setinterval, the mask bug, and I can not display the...

Hello! I'm trying to create a weight mask with 3 decimals precision without success. The requisites: 1. Comma separating the last 3 digits 2. Maximum of 8 integer values 3....

`utils.prototype.maskDdd = (function (object) { object.forEach(function (name) { var behavior = function (val) { return val.replace(/\D/g, '').length === 3 ? '(000)' : '(009)'; }, options = { onKeyPress: function (val,...