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.
12 lines
367 B
12 lines
367 B
9 years ago
|
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();
|
||
|
});
|