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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T02:17:57+00:00 2026-06-08T02:17:57+00:00

Basically I have this select list with multiple options in it: <select name=drop1 id=Select1

  • 0

Basically I have this select list with multiple options in it:

<select name="drop1" id="Select1" size="30">
  <?php
    for($i = 0;$i<30;$i++)
    {
       echo "<option id=\"other\" value=\"" . $i . "\"></option>\n";
    }
  ?>
</select>

I also have an input field:

<input type="text" id="inputfield"></input>

With jquery I want to accomplish the following: Whenever the inputfield is focussed and the arrow up is pressed, I want to move 1 option up in the select list. Same thing with arrow down. I already found out what jquery events to use to know when key down and up are pressed:

$('#inputfield').keydown(function(e){ //When a key is pressed..
    var code = (e.keyCode ? e.keyCode : e.which);
    if ((e.keyCode || e.which) == 40) // on key down
    {
       // Make selection go down here       
    }           
    if((e.keyCode || e.which) == 38) // on key up
    {
    // Make selection go up here
    }
});
  • 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-06-08T02:17:59+00:00Added an answer on June 8, 2026 at 2:17 am

    I’d suggest the following:

    $('#inputfield').keydown(function(e) { //When a key is pressed..
        var code = (e.keyCode ? e.keyCode : e.which),
            select = document.getElementById('Select1');
        if (code == 38) // on pressing: ↑
        {
            select.selectedIndex = select.selectedIndex + 1;
        }
        else if (code == 40) // on pressing ↓
        {
            select.selectedIndex = select.selectedIndex - 1;
        }
    });
    

    JS Fiddle demo.

    Updated in response to comment left by the OP (below):

    the .change() event of the selection list doesnt respond when I use the key up and key down method.

    In order to trigger the change event, simply use trigger(); also, in the following code, I’ve added sanity checks to try and ensure that the key-up/key-down will only happen, and therefore only trigger a change event, when the select option’s selected option can actually change:

    $('#inputfield').keydown(function(e) { //When a key is pressed..
        var code = (e.keyCode ? e.keyCode : e.which),
            select = document.getElementById('Select1'),
            current = select.selectedIndex,
            last = $(select).find('option:last').index();
        if (code == 38 && current < last) // on key down
        {
            select.selectedIndex = current + 1;
            $(select).trigger('change');
        }
        else if (code == 40 && current > 0) // on key up
        {
            select.selectedIndex = current - 1;
            $(select).trigger('change');
        }
    });​
    

    JS Fiddle demo.

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

Sidebar

Related Questions

I have a query that, basically, says this: SELECT DISTINCT [DB_ID] FROM [TableX] WHERE
So, basically I have this select / drop down menu that I use AJAX
As I have mentioned in this post: dynamic multiple filters in xsl Basically, I
I have a query that is basically like this: SELECT foo FROM bar where
I have this error that is keeping me from moving forward. I basically have
Basically I have this string for example $str = 'По, своей 12' I need
Basically I have this string $str=word1 word2 word3; I need array( 'word1', 'word2', 'word3'
So basically I have this giant regular expression pattern, and somewhere in the middle
Ok, so basically I have this part of the .htaccess partly working, but not
I have (basically) this code - <script type=text/javascript language=javascript> $(document).ready(function() { $(#loadDiv).load(mypage.html, function(){ alert($(#someText).text())

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.