Op maandag 19 november 2001 07:43 schreef _Assassinator_ het volgende:
[..]
yep

thnx voor de uitleg hehe
oh ja tis trouwens niet voor een reclame pop-up ofzo die ik ontop wil houden, het is voor een zogenaamde remote control.. een venster die een form in een ander venster controleert...
misschien is dit iets
http://groups.google.com/groups?q=keep+IE+window+always+on+top&hl=en&rnum=3&selm=733f3b%241bo8%241%40zen.hursley.ibm.com
Search Result 3
From: Chris Lambert (lambertc@uk.ibm.com)
Subject: Re: browser window always on top - possible?
Newsgroups: comp.lang.javascript
View: Complete Thread (5 articles) | Original Format
Date: 1998/11/20
I would think that Gunnar means, is it possible to keep a browser window
always on top.
the answer is yes, but not easily in IE.
You can use OnBlur="self.focus()" in the BODY tag of the window on top but
this causes problems as you cannot access the windows behind it at all.
In Netscape, there is another way to do it, but it involves secuirty
clearance from the user:
{netscape.security.PrivilegeManager.enablePrivilege
"UniversalBrowserWrite");
window.open(openpage, 'RTWindow',
config='height=500,width=300,toolbar=no,menubar=no,scrollbars=yes,alwaysrais
ed=1')}
This will keep a new window always on top (but only in Netscape). Warning:
THIS MAY CRASH ANY OTHER BROWSER!!