HTML Help - Popup windows
Thread Starter
Scooby Regular
Joined: Mar 2000
Posts: 4,531
Likes: 0
From: Gloucestershire, home of the lawnmower.
Hi All,
Struggling with this one.
I need to provide a link to a webpage. I want this webpage to automatically open a small popup with just the title bar and for this popup to load a HTML page.
Now the tough bit. As soon as the popup appears, I want the original page to disappear/close.
I'm trying to allow a small popup to appear on screen that will show an image (some server stats) but will not take up all the desktop.
Any help gratefully received.
Cheers
Ian
Struggling with this one.
I need to provide a link to a webpage. I want this webpage to automatically open a small popup with just the title bar and for this popup to load a HTML page.
Now the tough bit. As soon as the popup appears, I want the original page to disappear/close.
I'm trying to allow a small popup to appear on screen that will show an image (some server stats) but will not take up all the desktop.
Any help gratefully received.
Cheers
Ian
Can be done, but do you want to?
If you close a browser window created by the user, it will prompt the user via a dialog box asking if they want to close it.
Why not just resize the window when the new page loads?
Using code like this:
<html>
<body bgcolor="#FFFFFF">
<title>Resize Window Thingy</title>
<script language="JavaScript">
<!--
window.resizeTo(500,500)
-->
</script>
This should be 500 x 500
</body>
</html>
If you close a browser window created by the user, it will prompt the user via a dialog box asking if they want to close it.
Why not just resize the window when the new page loads?
Using code like this:
<html>
<body bgcolor="#FFFFFF">
<title>Resize Window Thingy</title>
<script language="JavaScript">
<!--
window.resizeTo(500,500)
-->
</script>
This should be 500 x 500
</body>
</html>
Thread
Thread Starter
Forum
Replies
Last Post
Mattybr5@MB Developments
Full Cars Breaking For Spares
28
Dec 28, 2015 11:07 PM
hardcoreimpreza
Computer & Technology Related
21
Oct 11, 2015 03:40 PM
Pro-Line Motorsport
Car Parts For Sale
2
Sep 29, 2015 07:36 PM




