Home > General > Affiliate Marketing Forum

Javascript Exit Pop Up And Redirect Script? (6)


06-14-2011 09:10 AM #1 vidivo (Member)
Javascript Exit Pop Up And Redirect Script?

I had this put can't find it anymore, so if anyone is willing to share theirs that would be great!

Pretty much Im looking for one that pops a javascript thing that says some info, and only an ok button, then another pop thing that says stay on page or cancel with more info, then if they cancel to stay on page, they get redirected...

Thanks!!


06-14-2011 09:39 AM #2 ppvnewbie (Member)

Here you go

Code:
<script type="text/javascript">
    var ShowExitPopup = true;
    function ExitPage() {
        if (ShowExitPopup) {
            ShowExitPopup = false;
                location.href = "YOURREDIRECT.COM";
                
                return '*************************************************\nToday\'s Special 80% OFF Discount\n*************************************************\n\nWait... Before You Go:\n\nWe want to offer you a special discount that is normally restricted to only friends and family.\n\nYou can SAVE BIG by clicking the cancel button below.\n\nYou will get my entire system for only $29.95  That is $120.00 OFF the normal price of $149.95.\n\nTo get INSTANT ACCESS to the "friends and family" discount page where you can access this exclusive offer, click on the CANCEL button below.\n\n*************************************************\nToday\'s Special 80% OFF Discount\n*************************************************';
        }
    }
</script>    

Replace this with your <body> tag: <body onbeforeunload="return ExitPage();">


06-14-2011 06:05 PM #3 vidivo (Member)

Doesnt work in chrome? Or at least didnt for me...


06-14-2011 06:18 PM #4 ppvnewbie (Member)

Works fine for me in Chrome too


06-14-2011 06:54 PM #5 chris_m (Member)

Yeah, can't get it to work for me... - added in the body tag <body onbeforeunload="return ExitPopup();"> but still nothing seems to pop up when I refresh/delete/click elsewhere...


06-14-2011 07:43 PM #6 ppvnewbie (Member)

I am sorry guys, totally forgot about the body part. Edited my post above with the code.


Home > General > Affiliate Marketing Forum