On blur I am trying to get a new tab to open only after user confirms to do this. However, I cannot see this happening and no confirm dialog is triggered. I am using the below and have tried other scripts too but cannot find how to do this:
$(window).blur(function() {
confirmit() {
var closeit= confirm("Would you like to see our exclusive offers?");
if (closeit == true) {
window.open("http://NEWURLHERE.com" target="_blank");
}
else {
window.close();
}
};
})