Jump to content

[SOLVED] Redirect on keydown (HOME).


iPixel

Recommended Posts

NVM - i managed  ;D

 

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>

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.