ok fatto anche questo:
codice:
function validateTelephone(mob){
//var mobReg = /^3\d{9}$/;
var mobReg = /^[1-9]\d{8,9}$/;
return mobReg.test(mob);
}