|
-
Aug 28th, 2000, 08:03 PM
#1
Thread Starter
Frenzied Member
how do I make it so that
in about 5 seconds after the page loads, it opens a new toolbar less address bar less browser window to a url?
NXSupport - Your one-stop source for computer help
-
Aug 30th, 2000, 11:01 AM
#2
Hyperactive Member
Code:
<HTML>
<HEAD>
<SCRIPT LANGUAGE=javascript>
<!--
function doShit() {
setTimeout("window.open('http://sajendra.dhs.org','somename','toolbar=no');",5000);
}
//-->
</SCRIPT>
</HEAD>
<BODY onLoad="doShit();">
<P> </P>
</BODY>
</HTML>
[Edited by noone on 08-30-2000 at 12:45 PM]
"People who think they know everything are a great annoyance to those of us who do."
-
Aug 30th, 2000, 01:01 PM
#3
Thread Starter
Frenzied Member
I'm sorry I forgot, I was looking for the answer in PHP
NXSupport - Your one-stop source for computer help
-
Aug 31st, 2000, 04:59 PM
#4
Hyperactive Member
PHP is a server side language. I don't think you would be able to open a new browser using it, especially after the page has loaded. Once the user gets the page, all the PHP should have been processed by the server already.
"People who think they know everything are a great annoyance to those of us who do."
-
Aug 31st, 2000, 05:47 PM
#5
Thread Starter
Frenzied Member
someone once showed me the way how, but it was a very long time ago
NXSupport - Your one-stop source for computer help
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|