|
-
Feb 3rd, 2001, 02:34 AM
#1
Thread Starter
Addicted Member
How does one code a popup window that will load up without any borders so it seemlessly blends with the larger background window.....Or....
How can I trap a window into another window of a browser so the smaller window will not fall behind the larger window....and.....
How does one code a window close. I am intending on closing a window automatically after a period of time.
These code can be either java script or html, any takers?
I appreciate all of your time and effort,
Daniel Christie
VB 5 and 6 Enterprise Editions,
Html, Java scipt, Vb script,
& etc...
http://www.qwcd.com
-
Feb 3rd, 2001, 03:48 PM
#2
Fanatic Member
You could try this to keep the window on top:
<BODY ONLOAD = "window.focus();" ONBLUR = "window.focus();">
I use this JavaScript function to open new windows on one of my webapges:
function wopen( URL )
{
var Domain
Domain = "http://www.yourDomain.com/"
URL = Domain + URL
window.open(URL,"winName","height=300px, width=520px, scrollbars=yes, location=no, status=no, menubar=no");
}
I call it like this:
ONCLICK = "wopen( 'myPage.html' )"
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
|