3 replies
Hey anyone know where to find this script or service?

As you exit a pop up occurs with the standard "click ok to leave, and cancel to see our special offer" but NOT a Chat Box (Like Save a sale, or upselldotcom.com), it just goes to a complete separate page in the background

One example is wildseo.com

Anyone know? Id be very grateful
#script
  • Profile picture of the author Christian Chan
    That can be done via a simple javascript.
    {{ DiscussionBoard.errors[485362].message }}
  • Profile picture of the author YiKeS
    Originally Posted by Destin Cribbs View Post

    Hey anyone know where to find this script or service?

    As you exit a pop up occurs with the standard "click ok
    to leave, and cancel to see our special offer" but NOT a
    Chat Box (Like Save a sale, or upselldotcom.com), it just
    goes to a complete separate page in the background

    One example is wildseo.com

    Anyone know? Id be very grateful
    G`day Destin,

    I believe this is the software used, you`ll
    see a demo on the page by trying to leave ...

    Not A Chatbox

    Christopher J.
    Signature
    AUSSIE MADE
    WSO --> HOMEPAGER <--- WSO
    {{ DiscussionBoard.errors[485406].message }}
  • Profile picture of the author Paul1234
    It's a simple javascript that forces a re-direct and then returns a message (the pop-up with the 'ok' and 'cancel' buttons), but the script function will only execute if the 'Instant Free Info' button is not clicked.

    Here's how it works
    ---

    The 'Instant Free Info' button's html code is:

    <input type="submit" value="Instant FREE Info!" onclick='SEP=false'/>

    The script is called in the html just before </head>:

    <script type='text/javascript' src='epin.html'></script>

    The called script (epin.html) is:

    var SEP = true;
    function ExitPage()
    {
    if (SEP)
    {
    SEP = false;
    location.href = "http://www.wildseo.com/discount17/";
    return '************************************************\ nTodays Special HALF OFF Discount\n**************************************** ********\n\nWait... Before You Go:\n\nWe want to offer you a special discount we normally give to our\nfriends and family.\n\nYou can get HALF OFF -"Wild SEO Cash Course" by clicking\nthe cancel button below.\n\nYou will get our entire system for only $17.00. That is more than\nHALF OFF the normal price of $49.99.\n\nTo get INSTANT ACCESS to our special "friends and family" discount\npage where you can use the HALF OFF discount code, click on the\ncancel button below.\n\n**************************************** ********\nTodays Special HALF OFF Discount\n**************************************** ********\n\n';
    }
    }

    function EXITPAGE() is called in the <body> tag by:

    onbeforeunload="return ExitPage();"

    ---
    The sign-up form on the homepage is a Get Response form, so I suspect it's one of their form options. But if you happen to use another form that doesn't have the option available, you could use the examples above and retrofit the html to suit.

    Hope this helps.
    Signature

    Paul Turner

    {{ DiscussionBoard.errors[485431].message }}

Trending Topics