Thread: Need Help -.-
View Single Post
Old 07-13-2012, 07:38 AM   PM User | #2
Philip M
Supreme Master coder!

 
Philip M's Avatar
 
Join Date: Jun 2002
Location: London, England
Posts: 17,105
Thanks: 197
Thanked 2,422 Times in 2,400 Posts
Philip M has a spectacular aura aboutPhilip M has a spectacular aura aboutPhilip M has a spectacular aura about
var wnd = window.open("http://google.com");

Just change the url to the url you require!

Or to redirect after the 15 seconds are up:-

setTimeout(function() {
wnd.close();
window.location = "http://www.javascriptkit.com";
}, 15000);
return false;
};
})();


Do please read the posting guidelines regarding silly thread titles. The thread title is supposed to help people who have a similar problem in future. Yours is useless for this purpose. You can (and should) edit it to make it more meaningful.


All advice is supplied packaged by intellectual weight, and not by volume. Contents may settle slightly in transit.
__________________

All the code given in this post has been tested and is intended to address the question asked.
Unless stated otherwise it is not just a demonstration.

Last edited by Philip M; 07-13-2012 at 07:44 AM..
Philip M is offline   Reply With Quote