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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T23:21:03+00:00 2026-06-03T23:21:03+00:00

I am developing a small questionnaire and fire an ASP LinkButton click when the

  • 0

I am developing a small questionnaire and fire an ASP LinkButton click when the TAB key is pressed from Javascript.

The Javascript is as follows:

 document.onkeydown = keydown;
    function keydown(event) {
        if (event.key == "Tab" || event.keyCode == 9 || event.which == 9 && !event.shiftKey)
            __doPostBack('<%=btnNext.UniqueID%>', '', true, '', '', false, true); 
        else if (!event) {
            if (window.event.keyCode == 9 && window.event.keyCode == 9 && !window.event.shiftKey)
                __doPostBack('<%=btnNext.UniqueID%>', '', true, '', '', false, true);
        }
    }

My ASP LinkButton looks like this:

 <asp:LinkButton ID="btnNext" runat="server" CausesValidation="true"></asp:LinkButton>

The LinkButton causes the page to reload with the next question. It all works perfectly in Firefox and Chrome, but not in IE.

In IE only the first TAB key press works, but when I then press TAB again the second time, after the next question was loaded, nothing happens.

Any idea how to make it work in IE? Hate these browser differences….

  • 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-03T23:21:05+00:00Added an answer on June 3, 2026 at 11:21 pm

    You need to return false to cancel the default action caused by tabbing

    document.onkeydown = keydown;
    function keydown(event) {
        if(!event){
            event = window.event;
        }
        if (event.key == "Tab" || event.keyCode == 9 || event.which == 9 && !event.shiftKey){
            __doPostBack('<%=btnNext.UniqueID%>', '', true, '', '', false, true); 
            // Only capture tab events
            return false;
        }
        return true;
    }
    

    (I have also DRY’ed you code out a bit)

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

Sidebar

Related Questions

I'm developing a small app designed to embed HTML + JavaScript (JavaScript manages the
I'm developing a small project in ASP.NET MVC to manage photos, but I don't
I'm currently developing a small, JavaScript based drawing application on iPad. I've simply wrapped
I'm developing a small application that reads data from a database and displys it
I'm developing a small HTML Canvas & JavaScript based game to train myself and
I am developing small application for training purposes. There after click on the button
I am developing a small application which lists the contents from files of a
Greetings, Currently developing small web service application where response from web service (using CXF
I'm developing a small web-based (javascript) 'application' for an art project. The thing is
I'm developing small FTP upload app. for mac (10.6 if it matters) Have problem

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.