Skip to content

Instantly share code, notes, and snippets.

@emwiles
Last active August 29, 2015 14:05
Show Gist options
  • Save emwiles/3d9382aa8cc74edb11fd to your computer and use it in GitHub Desktop.
Save emwiles/3d9382aa8cc74edb11fd to your computer and use it in GitHub Desktop.
Script to force a web page to open a different URL
<script>
var h = window.location.host;
var f = 'http://yoururl.com';
window.location.replace(f);
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment