Html, JAVA,DOTNET,Javascript, PHP, and JQuery Scripts and its issues with solutions
Wednesday, 25 June 2014
Alpha Space Validation in JS
Enter text file allow allphabi & space only
function alpha_space_validation(arg){
var valReg = /^[A-Za-z ]+$/;
if(valReg.test( arg ) ) {
return false;
} else {
return true;
}
}
No comments:
Post a Comment