Use the global flag:
var name = name.replace(/[^a-zA-Z ]/g, "");
^
If you don’t want to remove numbers, add it to the class:
var name = name.replace(/[^a-zA-Z0-9 ]/g, "");
Use the global flag:
var name = name.replace(/[^a-zA-Z ]/g, "");
^
If you don’t want to remove numbers, add it to the class:
var name = name.replace(/[^a-zA-Z0-9 ]/g, "");