Share this page 

Close a window after a timeoutTag(s): Language


This will open a window using the welcome.html file. The window will close itself after 5 seconds.
welcome = window.open('welcome.html');
setTimeout('welcome.close()',5000)