mirror of https://github.com/interlegis/sigi.git
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.
11 lines
367 B
11 lines
367 B
function refreshMask () {
|
|
$('.telefone').mask("00000000", {placeholder:"____-____"});
|
|
$('.ddd').mask("00", {placeholder:"__"});
|
|
$('.cpf').mask("00000000000", {placeholder:"___.___.___-__"});
|
|
$('.cep').mask("00000-000", {placeholder:"_____-___"});
|
|
$('.rg').mask("0.000.000", {placeholder:"_.___.___"});
|
|
}
|
|
|
|
$(document).ready(function (){
|
|
refreshMask();
|
|
});
|
|
|