PDA

View Full Version : blurr windows


Renegade
07-03-2001, 02:03 PM
I'm looking for a GOOD way to blurr a window. What i'm using now :

<script language="Javascript">
wsWin = window.open('','ws_console');
wsWin.blur();
wsWin.location = 'http://www.sex.com';
</script>

With this script, sometimes in IE it pops in front of the main page instead of the back of it, and i heard the script i use doesn't work in AOL browsers as well... someone has a decent well working one ??? you would help me a lot.... thanks !

nick
07-03-2001, 10:22 PM
why not just do
<script language="Javascript">
wsWin = window.open('http://www.sex.com','ws_console');
wsWin.blur();
</script>

you can also include
<script language="Javascript">
wsWin.blur();
</script>
at the bottom of your page, b4 the </html> tags.

Expo
07-03-2001, 11:27 PM
<SCRIPT language=JavaScript><!--
a=window.open("http://www.whateverurl.com","angel","toolbar=0,location=1,status=1,menubar=0,scrollbars =1,resizable=1,width=505,height=350")
window.focus()
// --></SCRIPT>

That is even more simple...