Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 956527
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T00:33:05+00:00 2026-05-16T00:33:05+00:00

We would like to mimic taking user input one letter at a time (intended

  • 0

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?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-16T00:33:05+00:00Added an answer on May 16, 2026 at 12:33 am

    My approach would be to catch the keydown event, and then do the validation, and in case of success display the correct letter instead of the underscore.

    A simplified scheme:

    HTML (needs some css to format):

    ...
     <ul id="wordToEnter">
       <li>_</li>
       ...
       <li>_</li>
     </ul>
    ...
    

    – or can be generated programatically, the point is to have one li element for each letter

    Javascript (with JQuery) :

    var currentLetter = 1;
    var expectedWord = "HELLO"; // this can be obtained dynamically
    
    $(window).keydown(function (event) { 
      var keyCode = String.fromCharCode(event.keyCode);
      if (keyCode == expectedWord.charAt(currentLetter - 1)) {
         changeUnderscoreToLetter(keyCode);
      }
    });
    
    function changeUnderScoreToLetter(letter) {
       $("#wordToEnter>li:nth-child(" + currentLetter + ")").text(letter);
       currentLetter++;
       if (currentLetter > $("#wordToEnter li").length)
          alert("Word enetered");
    }
    
    • could contain errors (didn’t tested it) and can be optimized

    Hope it helps.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

No related questions found

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.