A Better Exit Pop Redirect Script
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:
<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> 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.
-
compleks -
Thanks - 1 reply
{{ DiscussionBoard.errors[9795500].message }}-
jasonthewebmaster Banned-
Thanks - 1 reply
{{ DiscussionBoard.errors[9795913].message }}-
DanielBlue -
Thanks
{{ DiscussionBoard.errors[9797590].message }} -
-
-
-
jasonthewebmaster Banned-
Thanks - 1 reply
{{ DiscussionBoard.errors[9797624].message }}-
aicwebmaster -
Thanks
{{ DiscussionBoard.errors[9926035].message }} -
-