iPixel Posted May 27, 2009 Share Posted May 27, 2009 Im trying to see if i can make the keyboard button "Home" redirect the website back to index.php. I've tried to google but nothing usefull really came up. Might be my search string that didnt make sense i dunno. Any help is much appreciated. Thanks. Quote Link to comment https://forums.phpfreaks.com/topic/159925-solved-redirect-on-keydown-home/ Share on other sites More sharing options...
iPixel Posted May 27, 2009 Author Share Posted May 27, 2009 NVM - i managed For those who care.... <script type="text/javascript"> var mylink = "http://www.yahoo.com"; document.onkeyup = which_key; function which_key() { var key_pressed = event.keyCode; //alert(key_pressed); if(key_pressed == 36) { window.location = mylink; } else { alert("You Wish"); } } </script> Quote Link to comment https://forums.phpfreaks.com/topic/159925-solved-redirect-on-keydown-home/#findComment-843511 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.