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 897957
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T14:57:56+00:00 2026-05-15T14:57:56+00:00

How can I handle ArrowKeys and < (Greater Than) in a Javascript function? Which

  • 0

How can I handle ArrowKeys and < (Greater Than) in a Javascript function? Which event and which code (charCode Or keyCode)?

I am very confused how to do this. I have read this link very carefully,
Events and keyCode+charCode, but I could not find any solution for my scenario.

  • 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-15T14:57:57+00:00Added an answer on May 15, 2026 at 2:57 pm

    Using event.keyCode is sufficient. You only need to browser compatibility issues with regard to obtaining the key event into account.

    Here’s a basic kickoff example which captures arrow keys, copy’n’paste’n’run it:

    <!DOCTYPE html>
    <html lang="en">
        <head>
            <title>SO question 3181648</title>
            <script>
                document.onkeydown = function(e) {
                    e = e || event; // "real browsers" || IE6/7.
                    switch (e.keyCode) {
                        case 37: alert('left'); break;
                        case 38: alert('up'); break;
                        case 39: alert('right'); break;
                        case 40: alert('down'); break;
                    }
                }
            </script>
        </head>
        <body>
           <p>Press one of the arrow keys.</p> 
        </body>
    </html>
    

    Note that attaching events is better to be done this way or using jQuery.

    For capturing the pressed characters like <, have a look at Tim’s answer.

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

Sidebar

Related Questions

I want to handle window.onbeforeunload event. I can handle it this way window.onbeforeunload =
in asp.net we can handle the RowDataBound event of the GridView control. this event
The Vala language compiler can handle a very different looking syntax, Genie, which arguably
This server can handle 2 types of clients one which request one shot data
Any existing function that can handle this problem? Input: A B C output: {A},{B},
How I can handle the Mouse Right Button Double Click event for a Shape
I need a data structure which can handle the following: date_from (datetime) date_to (datetime)
I need a c# number something that can handle very large numbers but also
Imagine you have a server which can handle only one client at a time.
Can anyone suggest a plugin which can handle text selections in text areas (cross

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.