Hi, I see some people talking about popunder traffic, but cant really figure out how they exactly work now.
Do I need for popunder only a landingpage and no creatives at all?
Lets say a user is browsing a video website, when they click to watch a video, instead of the video loading on the existing page, a new page is opened which loads the video.
Then while they are watching the video on this new page, the other page redirects to your landing page.
You only need a landing page and a common tactic is to use an alert popup to grab their attention.
Below is a mobile popunder script that you can use, requires jQuery and the class "outgoing-link" to be added to your CTA.
var popTarget = 'http://YOURLP.com';
$('.outgoing-link').click(function(e) {
inFormOrLink = true;
if($('.outgoing-link').attr('target') !== '_blank') {
$('.outgoing-link').attr('target', '_blank')
}
if($('.outgoing-link').attr('data-popurl') ) {
window.location = $(this).attr('data-popurl');
}
else {
window.location = popTarget;
}
});
Thank your for your response, but I dont really get where do I put this code now. Let me give you an example if I get it correctly.
Lets say I have a landingpage for an appinstall, which I was running for normal banner traffic. Now I want to run this offer on a trafficsource, which is offering popunder.
So if we buy poptraffic now, what exactly do we have to submit the trafficsource?
Do we just need to provide them the link to our landingpage and they will redirect the user themself or do we have to edit this code into our landingpage?
I am confused, since the link of our LP is mentioned in the code. Doesnt make sense to me to redirect our LP to our LP, hehe
Can you please tell me what exactly to do, to run poptraffic. I didnt find any tutorials here and also didnt find anything via google. Would appreciate it, if u guys have a link for me.
Thank you!
You only have to give them a link to your landing page.
The script above is what the traffic source will be using, you don't need it but can use it to get a better idea of how a popunder works.
Ahh okay, so its not that complicated as I thought, awesome! Thank you for the quick help, keep it up man!
So in your example an alert popup on your lp would display over the video? Is that allowed by the traffic source usually? Is the alert popup clickable and if so does that send him to the lp that has already been loaded or does it have the URL of the lp and opens a new page? Any scrips/code for the alert popup? Sorry for all the questions, thanks
window.onload = function(){alert("I am an alert box!");};
You guys should really just browse some porn sites. "How do popunders work?" will answer itself.