<html> <head> <script type="text/javascript"> var obj; var TAB = 9; function catchTAB(evt,elem) { obj = elem; var keyCode; if ("which" in evt) {// NN4 & FF & Opera keyCode=evt.which; } else if ("keyCode" in evt) {// Safari & IE4+ keyCode=evt.keyCode; } else if ("keyCode" in window.event) {// IE4+ keyCode=window.event.keyCode; } else if ("which" in window.event) { keyCode=evt.which; } else { alert("the browser don't support"); } if (keyCode == TAB) { obj.value = obj.value + "\t"; alert("TAB was pressed"); setTimeout("obj.focus()",1);// the focus is set back to the text input } } </script> </head> <body> <input type="text" onkeydown="catchTAB(event,this);"> </body> </html>A wonderful article about Event Models : http://developer.apple.com/internet/webcontent/eventmodels.html
You are here: Home > javascript > How to catch TAB key press with JavaScript in Firefox,Safari,Opare & IE
Friday, June 01, 2007
How to catch TAB key press with JavaScript in Firefox,Safari,Opare & IE
The example code is tested in IE, Firefox and Opare. Probably also works in Netscape as well as others like Safari.