time4fun
03-03-2017, 07:48 PM
Hey, geek squad:
I'm working on a snippet of javascript to run as a pop-up blocker detector for a website. I've got the detection part working just fine, but I need the damn thing to close the pop-up window like immediately if there's no pop-up blocker. I've tried this like 10 different ways, and somehow I keep screwing it up. (And by somehow I mean: I have absolutely no background in javascript, and therefore am clearly just out of my league)
Can anyone help me out with this? Here's my snippet:
<SCRIPT LANGUAGE="javascript">
var windowName = 'userConsole';
var popUp = window.open("/popup-page.php", "_blank", "width=1000, height=700, left=24, top=24, scrollbars=yes, resizable=yes");
setTimeout(window.close, 10);
if (popUp == null || typeof(popUp)=="undefined") {
alert("It looks like your browser has a pop-up blocker enabled.");
}
else {
popUp.focus();
}
</SCRIPT>
I'm working on a snippet of javascript to run as a pop-up blocker detector for a website. I've got the detection part working just fine, but I need the damn thing to close the pop-up window like immediately if there's no pop-up blocker. I've tried this like 10 different ways, and somehow I keep screwing it up. (And by somehow I mean: I have absolutely no background in javascript, and therefore am clearly just out of my league)
Can anyone help me out with this? Here's my snippet:
<SCRIPT LANGUAGE="javascript">
var windowName = 'userConsole';
var popUp = window.open("/popup-page.php", "_blank", "width=1000, height=700, left=24, top=24, scrollbars=yes, resizable=yes");
setTimeout(window.close, 10);
if (popUp == null || typeof(popUp)=="undefined") {
alert("It looks like your browser has a pop-up blocker enabled.");
}
else {
popUp.focus();
}
</SCRIPT>