Closed provostprovost closed 10 years ago
$("input[type='tel']").keyup(function() { var curchr = this.value.length; var curval = $(this).val(); if (curchr == 3) { $(this).val("(" + curval + ")" + "-"); } else if (curchr == 9) { $(this).val(curval + "-"); } });
$("input[type='tel']").keyup(function() { var curchr = this.value.length; var curval = $(this).val(); if (curchr == 3) { $(this).val("(" + curval + ")" + "-"); } else if (curchr == 9) { $(this).val(curval + "-"); } });