I have a html input field . I want to allow only [0-9]
(digits in English) and [০-৯]
(digits in Bengali)
If I used type='number'
then it only support [0-9]
not support [০-৯]
.
If I used type='text'
then it support any type of character
Any Idea please?