I have all the exit pop up code in my site with the .js file, but the window won't show up for some reason. Should be a 30 second fix for someone. Please let me know if you can do it and I will leave you good itrader for completion
By all means send me the url your working with, and please specify what browser your script isn't working on.
I have that fixed, no charge but your welcome to +rep me I found 2 errors Open your onexit.js file and replace the first function with this, also edit your URL, its not showing here for your privacy. var ShowExitPopup = true; function ExitPage() { if(Get_Cookie(name)) { if (ShowExitPopup) { ShowExitPopup = false; location.href = "YOUR URL HERE"; return '=====================================\nTodays Special Offer!: FREE Coupons & Samples!\n=====================================\n\nWait! Before You Go...\n\nI would like to offer you FREE grocery coupons, discounts, and more!\n\nYou can Save Money from 4,204 stores nationwide!.\n\nJust Click "CANCEL" Below to Start Saving!\n\nThis is completely FREE and doesn\'t cost you anything.\n\n=====================================\nTodays Special Offer!: FREE Coupons & Samples\n======================================\n'; } } } PHP: The first main error was, the popup message, the word doesn't had an ' Apostrophe in it which is fine but it breaks the line so you need to escape that with a backslash \ like so doesn\'t The second error was the cookie "name" you had onclick which is fine but you neglected to edit the word "name" elsewhere, for the moment I just put it back to name, so you'll need to edit that if necessary. Have a nice day
Perfect thanks! Is there a way to have the "OK" button direct to my "Cancel" button URL as well? I will leave you good rep!