regex 101 words with spaces code example
Example: regex for letters and spaces
/* Note this works with the onkeyup function in html with js */
function lettersandSpacesOnly(input){
var regexs = /[^a-z ]*$/gmi;
input.value = input.value.replace(regexs, "");
}