Posts by Marcos Vinicius Labres • 1 point
1 post
-
0
votes7
answers39327
viewsA: How to create input masks with Javascript?
<html> <script> function mask(e, id, mask){ var tecla=(window.event)?event.keyCode:e.which; if((tecla>47 && tecla<58)){ mascara(id, mask); …
javascriptanswered Marcos Vinicius Labres 1