-
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?
-
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' )"