Skip to content

Instantly share code, notes, and snippets.

@Rodrigora
Created June 13, 2013 01:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Rodrigora/a858b2a856a4ec6759f0 to your computer and use it in GitHub Desktop.
Save Rodrigora/a858b2a856a4ec6759f0 to your computer and use it in GitHub Desktop.
// jQuery Masked Input
$('#celular').mask("(99) 9999-9999?9").ready(function(event) {
var target, phone, element;
target = (event.currentTarget) ? event.currentTarget : event.srcElement;
phone = target.value.replace(/\D/g, '');
element = $(target);
element.unmask();
if(phone.length > 10) {
element.mask("(99) 99999-999?9");
} else {
element.mask("(99) 9999-9999?9");
}
});
/*
Quem encontrar problemas com o "target", utilize esta alternativa
Enviado por: Irineu <irineujunior@gmail.com>
*/
$('#celular').focusout(function(){
var phone, element;
element = $(this);
element.unmask();
phone = element.val().replace(/\D/g, '');
if(phone.length > 10) {
element.mask("(99) 99999-999?9");
} else {
element.mask("(99) 9999-9999?9");
}
}).trigger('focusout');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment