View Full Version : need blur advice
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)
thx.. thats the code i needed
vBulletin® v3.7.3, Copyright ©2000-2012, Jelsoft Enterprises Ltd.