Im needing a script that when a user clicks the "X" (closing the window) a new small pop up window will appear The new window will ask "Why are you abandoning my site?" and then offer a new price... then submit message or totally close the new window and main window.. thanks..
the problem is , if the user is browsing on my site and then go to my other links or web pages the onunload will trigger .. I want only if the user totally exits to my website or click "X"
if (window.XMLHttpRequest){ window.opener = window; var win = window.open(location.href,"_self"); win.close(); } else if (window.ActiveXObject) { window.opener = ""; window.close(); } try this code