A Better Exit Pop Redirect Script

5 replies
  • WEB DESIGN
  • |
I found a way to do a better Exit Pop Redirect script code than anything i could find online and wanted to share it here...

I wanted to use a redirect script to redirect any visitors to my squeeze page who try to leave without subscribing, (of course direct them to an affiliate offer) and all the scripts I found around the web tend to utilize some type of popup.. which is annoying to the user and they are all wise to how they work anyway.. so i wanted to redirect the user WITHOUT an actual popup, or any notice, just a silent secret redirect the instant they try to leave...

so here is the script I used, it works pretty good and if you try to leave my squeeze page you will instantly get redirected.

put this in the <head> of your page:

Code:
<script src="http://code.jquery.com/jquery-1.11.0.min.js"></script>
<script>
    exitpopped = 0;
    showpop = 0;
    delay = 1000;
 
    setTimeout(function(){showpop = 1;}, delay);
 
    $(document).mousemove(function(e){
        if(e.clientY <= 5 && exitpopped == 0 && showpop == 1){
            exitpopped = 1;
            window.location = "http://app.lead-swaps.com/rotator.php?m=nJmk3"
        }
    });
</script>
and change the link to your own rotator.


Basically what this does is detect when the user tries to leave your squeeze page and instantly redirects them WITHOUT any annoying or intrusive popups etc.

I hope this exit pop script helps, let me know if there are any questions.
#exit #pop #redirect #script
  • Profile picture of the author compleks
    Sounds very useful.

    Can you link us your site so we can see how it works?
    {{ DiscussionBoard.errors[9795500].message }}
    • Profile picture of the author jasonthewebmaster
      Banned
      You will have to just try it yourself, I don't want to promote my squeeze page the mods here are nazis.. for example here is an normal exit popup script i found in someone elses site.. It has a popup when you try to leave. http://www.clkmg.com/jjnc/ls-sq1 Also there are ones that use the browser UI to ask the user are they sure they want to leave. Some marketers swear by these and say they increase sales etc. Most users seem to not like them. So instead of using a popup of any type that interrupts the user when they try to leave, this script will just simply and silently redirect them to the link you choose. Just add it to the <head> of any page and If you notice, it redirects anytime you drag your mouse past the top of the page and cross into the actual browser area. This triggers it.
      {{ DiscussionBoard.errors[9795913].message }}
      • Profile picture of the author DanielBlue
        Sounds interesting! Did you split test this already? How are the results?
        {{ DiscussionBoard.errors[9797590].message }}
  • Profile picture of the author jasonthewebmaster
    Banned
    nope, not yet.. i would definitely be interested to see how this compares to a normal exit pop and even compared to a plain squeeze page with no exit pop
    {{ DiscussionBoard.errors[9797624].message }}

Trending Topics