Skip to content

Instantly share code, notes, and snippets.

@goldalworming
Created March 1, 2015 07:09
Show Gist options
  • Select an option

  • Save goldalworming/8271409ff52087991289 to your computer and use it in GitHub Desktop.

Select an option

Save goldalworming/8271409ff52087991289 to your computer and use it in GitHub Desktop.
open new window then close
function closeOnLoad(myLink)
{
var newWindow = window.open(myLink);
setTimeout(
function()
{
newWindow.close();
},
5000
);
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment