Skip to content

Instantly share code, notes, and snippets.

@sharkyak
Last active November 6, 2015 04:50
Show Gist options
  • Save sharkyak/20f0f0dbe7ec66c552fe to your computer and use it in GitHub Desktop.
Save sharkyak/20f0f0dbe7ec66c552fe to your computer and use it in GitHub Desktop.
Простая проверка телефона на валидность
function testPhone(phoneName) {
var re = /^[\d\(\)\+ -]+$/;
return re.test($(phoneName).val());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment