Anyone has Mobile Number validation Script ? I already have a SMS Gateway with me but Before any of my user sends any sms , I want them to get their Mobile Number validated. I can use Mysql db.
//To validate a mobile number // it will validate 0-9 numbers. function ToCellValidate(objMobileNo) { if(objMobileNo.value!="") { var incomingString=objMobileNo.value; if(trimSpace(incomingString).length > 15 || incomingString.search(/[^0-9\-()+]/g) != -1 ) { alert('Please enter valid mobile number'); objMobileNo.focus(); objMobileNo.value=""; return false; } else return true; } } Code (markup):