Advertisement
jpss

Untitled

Mar 9th, 2017
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. <input type="text" id="campoData">
  2. <input type="text" id="campoTelefone">
  3. <input type="text" id="campoSenha">
  4.  
  5. <script>
  6. jQuery(function($){
  7. $("#campoData").mask("99/99/9999");
  8. $("#campoTelefone").mask("(999) 999-9999");
  9. $("#campoSenha").mask("***-****");
  10. });
  11. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement