Forum Moderators: open
//Webpage
<body onunload="javascript: popup()">
...
//JS page
exited = 0;
function popup() {
var x=window.confirm("Would you like to fill out a quick survey?")
if (x){
window.open('survey_comments.php','Survey/Comments','height=300,width=800, scrollbars=yes, resizable=yes, left=30, top=30');
}
}
If you call window.open from this event, the Pop-up Blocker feature in Microsoft Internet Explorer 6 prevents the pop-up window from appearing.
Browsers equipped with pop-up window blockers will ignore all window.open() method calls in onunload event handler functions.