PDA

View Full Version : need blur advice


Trax
12-04-2001, 02:28 PM
anyone knows a javascript that blurs an exit popup... the one i tryed didnīt work.. thx

Shovel
12-04-2001, 05:04 PM
You are probably better off blurring the console on entry, that way all graphics etc are fully loaded and waiting behind the main window when it is closed.

Copy and Paste the following in the <HEAD> </HEAD> sections in your HTML document:

<SCRIPT language="JavaScript">
<!--
myWindow=window.open('http://www.yourdomain.com/blurconsole.html','windowName');
self.focus();
if (!myWindow.opener) myWindow.opener = self;
// -->
</SCRIPT>

On the actual blur console, place this within the <HEAD> </HEAD> sections:

<SCRIPT language=javascript>
self.blur();
</script>

This code courtesy of
PornMegaBucks (http://www.pornmegabucks.com/ref=pmb3270)

Trax
12-04-2001, 11:56 PM
thx.. thats the code i needed