Hi,
I am using this one to prevent user to type special chars.
String.prototype.isText = function () {return /^[\w\s]*$/.test(this)}
How can i change it to prevent users to type non-english words ? (only apostrophe and &
will be accepted as special char)
thanks so much