I am trying to add a survey confirmation box with Ok/Cancel on browser window/tab close. I need to redirect user to survey link on Ok button click.
Trying to implement the same with below code.
var leave_message = 'Wait! Would you like to respond to a quick Survey?'
function bye(e) {
if (!e) e = window.event;
e.cancelBubble = true;
if (e.stopPropagation) {
e.stopPropagation();
e.preventDefault();
}
e.returnValue = leave_message;
if (confirm(leave_message)) {
window.open("www.surveylink.com");
}
}
window.onbeforeunload = bye;
Please suggest above code is not working.