Skip to content

Instantly share code, notes, and snippets.

@MaraScott
Created February 22, 2013 03:27
Show Gist options
  • Select an option

  • Save MaraScott/5010498 to your computer and use it in GitHub Desktop.

Select an option

Save MaraScott/5010498 to your computer and use it in GitHub Desktop.
Name : delayer - Language : javascript - type : feature - platform : jQuery - tag :
// delay redirect
function delayer(){
"use strict";
window.location = "https://gist.github.com/davask/";
}
jQuery(document).ready(function(){
"use strict";
setTimeout('delayer();', 10000);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment