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

  • Home
  • SEARCH
  • 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 7694965
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T21:26:18+00:00 2026-05-31T21:26:18+00:00

Internet explorer seems to be hang after you tab through form inputs while holding

  • 0

Internet explorer seems to be hang after you tab through form inputs while holding in spacebar

to illustrate the problem I’ve setup a really simple form with 3 checkboxes.
http://inkistudios.com/tests/checkbox.html

if you press tab until you get to a checkbox input.
try holding in spacebar as if you would toggle the checkbox using your keyboard.
but then press tab to switch to another checkbox before releasing the spacebar.
this seems to cause Internet explorer to hang , you cannot drag the window around , and clicking on anything on the page seems to check/uncheck the checkbox you tabbed out of.
so Internet Explorer seems to still be waiting for spacebar to be released on the first checkbox…
I tried this in Internet Explorer 7, 8 and 9, all seems to have the same result.

I was wondering if anybody has a solution for this.
maybe some javascript that would force the browser to release the state it is in ?

I’ve already tried unfocusing the element or putting focus on another element using jquery in case that happens , but nothing I’ve tried seems to solve it.

  • 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-31T21:26:20+00:00Added an answer on May 31, 2026 at 9:26 pm

    I was able to reproduce this behavior using two versions of IE:

    • IE 8 (version 8.0.7601.1754).
    • IE 9 (version 9.0.8112.16421, update version 9.0.4)

    Clicking the title bar of the window toggled the checkbox, in addition to being able to click anywhere in the page. I found that it releases the window as soon as you press space again.

    This looks like a bug in how IE handles focus. Since the window releases as soon as space is pressed again, I thought maybe it would be possible to write JavaScript to simulate a space bar press. Here’s the script I worked out based on your test case:

    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="utf-8">
        <meta name="robots" content="none">
        <meta name="viewport" content="width=960">
    
        <title>checkbox test</title>
    
    </head>
    <body>
    
    <h1>Checkbox test</h1>
    
    <input name="item1" id="item1" value="1" checked="checked" type="checkbox" />
    <label for="item1">item1</label><br />
    
    <input name="item2" id="item2" value="2" checked="checked" type="checkbox" />
    <label for="item2">item2</label><br />
    
    <input name="item3" id="item3" value="3" type="checkbox" />
    <label for="item3">item3</label>
    
    <script>
    <!--
    var spaceDown = false;
    var tabDown = false;
    
    window.onload = function(){
        document.onkeydown = function(){
            if(event.keyCode == 32){ spaceDown = true; }
            if(event.keyCode == 9){ tabDown = true; }
        }
    
        document.onkeyup = function(){
            if(spaceDown && tabDown){
                console.log("Danger, Will Fobinson!");
                console.log("Simulating space bar press ...");
                var e = document.createEventObject();
                e.altKey = false;
                e.ctrlKey = false;
                e.shiftKey = false;
                e.keyCode = 32;
    
                document.fireEvent("onkeydown", e);
                document.fireEvent("onkeyup", e);
            }
    
            if(event.keyCode == 32){ spaceDown = false; }
            if(event.keyCode == 9){ tabDown = false; }
        }
    }
    
    
    
    // -->
    </script>
    
    </body>
    </html>
    

    Unfortunately, when you trigger the danger condition in IE 8 (focus a checkbox, space down, tab down), it increases IE’s CPU usage a LOT and pops up a little dialog box saying:

    Dialog box saying: 'stack overflow at line: 0'

    So that’s not very helpful.

    And as you discovered, the focus() and blur() methods don’t seem to do anything helpful in this instance either.

    So basically, I think your only option is to report it as a bug to the IE team, and hope they fix it. I’m not sure how you do that actually. In theory you can submit IE feedback at http://connect.microsoft.com/IE — but you’ll need to log in with a Windows Live ID, and I’m not sure how you get one of those.

    Other than that … well, let’s just hope that not too many people trigger the bug!

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

Sidebar

Related Questions

it seems I have run into a problem with Internet Explorer 7. I have
For Internet Explorer only it seems that the target (srcElement) of clicks, mousedowns, mouseups,
It seems since I installed Internet Explorer V8 that my Winforms Designer Exception screen
I've got a problem in internet explorer 6 and FF with something I'm trying
Internet Explorer 7 seems to ignore the :not-selector in the second line in following
Internet Explorer seems to be ignoring this ajax function call (below) but it works
I've noticed that Internet Explorer seems to ignore a table's padding. I've tested version
In Firefox seems fine, Chrome and Internet Explorer the text is still selectable, is
I am trying to write an Internet Explorer 8 solution for loading XML through
I have a problem with using HTML5 elements in Internet Explorer 7 and up

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.