Skip to content

Instantly share code, notes, and snippets.

@omariosouto
Last active October 28, 2015 19:26
Show Gist options
  • Save omariosouto/1169f2f10a501ae50d5f to your computer and use it in GitHub Desktop.
Save omariosouto/1169f2f10a501ae50d5f to your computer and use it in GitHub Desktop.
JqueryMask Script
//Mascara dos campos de telefone com Jquery Mask
//Mask for phone fields with Jquery Mask
jQuery(function($){
$(".campoTelefone").mask("(99) 9999-9999", { placeholder: ' ' } );
$(".campoCelular").mask( "(99) 9999-9999?9", { placeholder: ' ' } );
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment