We would like to mimic taking user input one letter at a time (intended for children). Assuming they are going to type "hello" we would want to capture all the letters separately. (e.g. you will show something like 5 underscores to show that they have to provide 5 inputs). Assuming they enter h e l d (i.e. the last letter is a mistake) they could press the Backspace button to erase it.
We tried using input type text field, but couldn't get the desired output. How can we achieve this either via HTML or jQuery?