You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

16 lines
455 B

var Masking = function () {
return {
//Masking
initMasking: function () {
$("#date1").mask('99/99/9999', {placeholder:'X'});
$("#phone").mask('(999) 999-9999', {placeholder:'X'});
$("#card").mask('9999-9999-9999-9999', {placeholder:'X'});
$("#serial").mask('***-***-***-***-***-***', {placeholder:'_'});
$("#tax").mask('99-9999999', {placeholder:'X'});
}
};
}();