Posts by Érky Lima • 9 points
1 post
-
0
votes4
answers14684
viewsA: Javascript Regular Expression for Phone with IDD
Function for Phone Mask with IDD function mTel(tel) { tel=tel.replace(/\D/g,"") tel=tel.replace(/^(\d)/,"+$1") tel=tel.replace(/(.{3})(\d)/,"$1($2") tel=tel.replace(/(.{6})(\d)/,"$1)$2")…