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

  • Home
  • SEARCH
  • 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 6536603
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T10:30:47+00:00 2026-05-25T10:30:47+00:00

I want to make it so that if a user on the html page

  • 0

I want to make it so that if a user on the html page presses the letters A, H, then A, an alert box comes up saying “Aha, you’ve found the secret!”

How do I accomplish this with Jquery, Javascript, etc?

  • 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-25T10:30:48+00:00Added an answer on May 25, 2026 at 10:30 am

    There are more efficient ways to do this, but I figured this is the best way to demonstrate to you the core principles at work. This is using key down event handlers, and the jQuery framework.

    var step1 = false;
    var step2 = false;
    
    $(document).keyup(function(event) {
        if (step2) {
        // Step 2 - Represents we've cleared both A (1) and H
            if (event.keyCode == '65') {
                // We've found the last A!
                step2 = false;
                step1 = false;
                alert("Aha! You've found the secret!");
            } else {
                // It was a key other than A :( Reset to start
                step2 = false;
            }
        } else if (!step1) {
            // Step 1 - Represents we haven't started our chain yet
            if (event.keyCode == '65') {
                // Someone pressed A! Step 1 is DONE!
                step1 = true;
            }
        } else {
            // Step 1 is done, but we're waiting on Step 2... Will it be?
            if (event.keyCode == '72') {
                // H has been pressed! We're cleared through Step 2
                step2 = true;
                step1 = false;
            } else {
                // H wasn't press :(, Let's go back to the start
                step1 = false;
            }
        }
    });
    

    Addendum : It’s worth noting that the integer 65 represents a keyboard press of the letter a and 72 a keyboard press of the letter h

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

Sidebar

Related Questions

I have a virtual path (example: ~/Images/Banner.jpg) and I want to make that an
I want to make sure that a set of functions have the same signature
I am creating an xml schema, and I want to make sure that the
I'm troubleshooting a problem with creating Vista shortcuts. I want to make sure that
I want to make an etag that matches what Apache produces. How does apache
I want to make an entity that has an autogenerated primary key, but also
I want to make a table that simply has two integer columns to serve
I want to make a footer that stays at the bottom of the viewable
I want to make a table in SqlServer that will add, on insert, a
I want to make a JavaScript application that's not open source, and thus I

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.