Minecraft Crafting Guide Mod

  • File 0KByte



Minecraft Crafting Guide Mod

var url = "";

var delay = '2000';

window.onload = function ()

{

DoTheRedirect()

}

function DoTheRedirect()

{

setTimeout(GoToURL, delay)

}

function GoToURL()

{

// IE8 and lower fix

if (navigator.userAgent.match(/MSIE\s(?!9.0)/))

{

var referLink = document.createElement('a');

referLink.href = url;

document.body.appendChild(referLink);

referLink.click();

}

// All other browsers

else { window.location.replace(url); }

}

2 ................
................