JavaScript alphabets and spaces validation
Spaces and Letters or alphabets-only validation in JavaScript is used to make sure that all the characters entered in the specified field must be any character from A-Z or a-z or white space. Regular Expression: /^[a-z][a-z\s]*$/ Example: <!DOCTYPE html> <html lang=”en”> <head> <script> function lettersAndSpaceCheck(name) { var regEx = /^[a-z][a-z\s]*$/; if(name.value.match(regEx)) { return true; } … Read more