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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T04:47:10+00:00 2026-06-12T04:47:10+00:00

I have a simple script that auto-advances the cursor to the next field in

  • 0

I have a simple script that auto-advances the cursor to the next field in my html form after one character is entered…and it works great for that. This is the simple code:

function autotab(current,to)
{
if (current.getAttribute && current.value.length==current.getAttribute("maxlength")) 
{   
        to.focus()          
    }
}

Then of course I use the onkeyup to advance it, like this:

<input onkeyup="autotab(this, document.jumble.w1b)" type="text">

Again, that works great. However, when I do Shift+Tab to go one box back, it auto-advances before I can type anything.

Does anyone have a code example of how to make Shift+Tab work? I have tried different variations of trying to use the keycodes to detect shift and tab, but it doesn’t seem to work.

Any help would be greatly appreciated!

  • 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-12T04:47:11+00:00Added an answer on June 12, 2026 at 4:47 am

    You should prevent to.focus in case of shift + tab jsfiddle

      function autotab(event, current,to)  {
           event = event || window.event;       
           if(event.keyCode < 65  ||  event.keyCode > 90){
             return ;
           }
           if (current.getAttribute && current.value.length==current.getAttribute("maxlength")) 
           {   
             to.focus()          
           }
        }
    

    EDIT: Add event as first parameter in autotab: <input onkeyup="autotab(event, this, document.jumble.w1b)" type="text">

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

Sidebar

Related Questions

I have this simple script that I'm working on. I must admit, I'm totally
I have a simple script that does some search and replace. This is basically
I have a simple script that pulls about 100 million results, 1 million at
I have a very simple script that creates a user: <?php include 'mysqlserver.php'; session_start();
I have a simple Ruby script that uses the rb-appscript gem to control iTunes,
I have a simple Python script that uses a signal handler for Ctl-C. If
I have a simple jQuery script that I'm trying to build upon but I
I have a simple Python script that uses the socket module to send a
I have a simple PHP script that will either serve up a streaming ASF
For a client I have build a simple script that uploads multiple files(images), resizes

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.