How to catch TAB key press with JScript?

javascript Poland
  • 13 years ago

    Hello,

    I have a question how to catch TAB key press with JScript (I can't use JavaScript on this page) on ASP.NET website??

    Maybe someone had similar problem?

    Wojtek

  • 13 years ago

    document.onkeypress = catchkey ;

    function catchkey(e) {

        key = ((window.event) ? event : e).keyCode;

        if(key == 9) alert("Tab Key");

    return;
    }

Post a reply

Enter your message below

Sign in or Join us (it's free).

Contribute

Why not write for us? Or you could submit an event or a user group in your area. Alternatively just tell us what you think!

Our tools

We've got automatic conversion tools to convert C# to VB.NET, VB.NET to C#. Also you can compress javascript and compress css and generate sql connection strings.

“A computer is a stupid machine with the ability to do incredibly smart things, while computer programmers are smart people with the ability to do incredibly stupid things. They are, in short, a perfect match” - Bill Bryson