igorescobar / jQuery-Mask-Plugin

A jQuery Plugin to make masks on form fields and HTML elements.
http://igorescobar.github.io/jQuery-Mask-Plugin/
Other
4.77k stars 1.42k forks source link

Mask DDD #701

Open airtonct opened 5 years ago

airtonct commented 5 years ago

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, e, field, options) { field.mask(behavior.apply({}, arguments), options); }, clearIfNotMatch: true }; $(name).mask(behavior, options); }); });

how to make the dynamic mask of 2 and 3 numbers with caracters at the beginning and end of the mask?

thanks you