Jump to content

[Script] Press " h " and go back to home


Recommended Posts

Posted

Hello people ,

This script is working like a hotkey ! What i mean ? If you add this script in your site , when you press the button " h " you will go back in the home ( you can change the link )

 

Here is the script :

 

<script language="JavaScript1.2">

<!--

/*

script found by LoStRe

*/

if (document.layers)

document.captureEvents(Event.KEYPRESS)

function backhome(e){

var targeturl="http://www.maxcheaters.com" <---- if you want to change the url just change the link and when you press h you will go back in the site you want

if (document.layers||document.getElementById&&!document.all){

if (e.which==104||e.which==72)

window.location=targeturl

}

else if (document.all){

if (event.keyCode==104||event.keyCode==72)

window.location=targeturl

}

}

document.onkeypress=backhome

//-->

</script>

 

Hope to help you ! :)

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now


×
×
  • Create New...

Important Information

This community uses essential cookies to function properly. Non-essential cookies and third-party services are used only with your consent. Read our Privacy Policy and 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..