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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T18:20:00+00:00 2026-05-31T18:20:00+00:00

I am having a difficult time trying to find my answer on my own,

  • 0

I am having a difficult time trying to find my answer on my own, so maybe someone can help.

I have a horizontal scrolling div (wrapper) with mutliple divs (box) inside of it.

I want to be able to click the keyboard arrows keys to jump to the next element. The window would be scrolling left with each jump.

I’ve created a basic jsFiddle that people can add too to add keyboard navigation.

http://jsfiddle.net/ryanjay/JjhUN/

  • 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-31T18:20:02+00:00Added an answer on May 31, 2026 at 6:20 pm

    This can be accomplished by storing the positions of the boxes and then testing that against the window.scrollX position. You then animate to the closest box depending on the arrow key pressed.

    var boxLefts = [];
    $('.box').each(function(i, el){
        boxLefts.push(this.offsetLeft);
    });
    
    $(document).keydown(function(e) {
        var dir = false,
            targetLeft = -1;
    
        switch (e.keyCode) {
        case 37:
            dir = -1;
            break;                
        case 39:
            dir = 1;
            break;
        }
    
        if (dir) {
            e.preventDefault();
            winLeft = window.scrollX;
            $.each(boxLefts, function(i, v){
                if ((dir == 1 && winLeft < v && targetLeft < 0) ||
                    (dir == -1 && winLeft > v)) {
                    targetLeft = v;
                }
            });
            if (targetLeft >= 0) {
                $('html, body').animate({scrollLeft: targetLeft}, 1000);
            }
        }
    });
    

    See Demo

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

Sidebar

Related Questions

I've been having an extremely difficult time trying to find an answer for this.
Ok, I have looked all over and I am having a difficult time trying
I'm trying out Linq for the first time and having a bit of difficult
I'm having a real difficult time getting this code to work. I'm trying to
I'm having the most difficult time trying to understand what I am doing wrong
I am having a difficult time trying to set up Cruise (not cruise control)
Hey All I'm having a difficult time with a database design. As you can
I'm having a difficult time trying to load System.Data.SQLite.dll from PowerShell in Windows 7
I'm using SQL Server and I'm having a difficult time trying to get the
I'm having a very difficult time trying to figure out how to make my

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.