mirror of https://github.com/interlegis/sigi.git
Eduardo Edson Batista Cordeiro Alves
9 years ago
committed by
Luciano Almeida
3 changed files with 1132 additions and 3 deletions
File diff suppressed because it is too large
@ -0,0 +1,11 @@ |
|||
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(); |
|||
}); |
Loading…
Reference in new issue