Select Page

Tag: JavaScript

Allow alphabets and space only in text field

Allow alphabets and space only in text field

There is a way to use an inline script to do this: <input type=’text’ onkeypress=”return (event.charCode > 64 && event.charCode < 91) || (event.charCode > 96 && event.charCode < 123) || (event.charCode == 32)”...