View Single Post
Old 12-04-2003, 07:12 AM  
 Smokey The Bear 
So Fucking Banned
 
Join Date: Dec 2003
Location: South Of Heaven™
Posts: 3,880
heres a code that will display an alert window if the user is using a popup blocker.

You could change this code and make it so that instead of making it an alert if the user uses a popup blocker you could send the window to a different page so they dont get to see your stuff.


< script type="text/j*a*va*script" >
//<![CDATA[
var mypopup=window.open("","win1",'width=100,height=10 0');
if (mypopup){
mypopup.close();
alert("You do not have unrequested popup blocking on!");
}
else
alert("You have unrequested popup blocking on!");
//]]>
< /script >
 Smokey The Bear  is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote