Skip to content

Instantly share code, notes, and snippets.

@karschsp
Created June 18, 2014 19:40
Show Gist options
  • Save karschsp/6d838581dfafeb16d500 to your computer and use it in GitHub Desktop.
Save karschsp/6d838581dfafeb16d500 to your computer and use it in GitHub Desktop.
JavaScript redirect
<script type="text/javascript">
var delay = 3000; //Your delay in milliseconds
URL='http://www.ingfunds.com/globalperspectives/signin';
setTimeout(function(){ window.location = URL; }, delay);
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment