Pop Under Pro Free Alternative - DevSeries

CCarter

Final Boss ®
Moderator
BuSo Pro
Boot Camp
Digital Strategist
Joined
Sep 15, 2014
Messages
4,160
Likes
8,507
Degree
8
I saw some folks running around pushing this "Pop Under Pro" stuff and first wondered why anyone would do this, but realized the dark side is still strong within me.

So what Pop Under Pro does is make all the links on your page open up in a new window and THEN the old page is redirected to another page (could be lander, could be CPA offer or whatever).

Here is the video:



--

Anyways, it's simple javascript (so if you want to use it on your non-wordpress site you can or don't want to pay $17 or $9 or whatever the up-to-second changing price is), so I decided to code it up in 10 minutes and release it for free.

Here is a link to demo of it (click on any link within the demo page):


Here is the javascript:

Code:
<!-- Stuff that makes the javascript run - @MercenaryCarter -->
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script type="text/javascript">
    $(document).ready(function() {
        $('a').click(function(e) {
            var id = $(this).data("windowid");
            if(id == null || id.closed) {
                id =  window.open($(this).attr("href"), '_blank');
            }
            id.focus();
            $(this).data("windowid", id);
            e.preventDefault();

            setTimeout(function () {
                   window.location.href = "http://moneyoverethics.com/buso/pop-under-pro/redirect-page.html"; //will redirect to your landing page (can be 'redirect-page.html' if you like )
                }, 1000); //will call the function after 1000 millisecond. (1000 = 1 second)

            return false;
        });
    });
</script>
<!-- Stuff that makes the javascript run - @MercenaryCarter -->

^^ That's all you need. If you already have jQuery being loaded, remove that jQuery reference.

--

Till next time.

- CC

F7iXquG.gif
 
Back