Only Allow Alphabetic Characters and Spaces For Input Field

PHOTO EMBED

Wed Jun 28 2023 05:12:32 GMT+0000 (Coordinated Universal Time)

Saved by @JISSMONJOSE #react.js #css #javascript

<input
  type="text"
  className="form-control firstname-input"
  id="firstname"
  placeholder="John"
  onInput={(e) => {
    const input = e.target as HTMLInputElement;
    input.value = input.value.replace(/[^a-zA-Z ]/g, '');
    setFirstName(input.value);
  }}
  {...register('firstName', {
    required: true,
  })}
/>
content_copyCOPY

Only allow alphabetic characters and spaces for firstName input field.