Home > Questions and Answers > General Questions

How does mobile popunder work? (8)


12-01-2014 04:40 PM #1 aaaart (Member)
How does mobile popunder work?

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?


12-01-2014 05:31 PM #2 jack45 (AMC Alumnus)

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.

Code:
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;
		}	
		
	});


12-01-2014 06:03 PM #3 aaaart (Member)

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!


12-01-2014 06:06 PM #4 jack45 (AMC Alumnus)

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.


12-01-2014 06:08 PM #5 aaaart (Member)

Ahh okay, so its not that complicated as I thought, awesome! Thank you for the quick help, keep it up man!


12-02-2014 03:48 AM #6 rumpel (Member)

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


12-02-2014 06:36 AM #7 andyvon (AMC Alumnus)

Quote Originally Posted by rumpel View Post
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
a javascript alert will force the popunder to the front, so it basically becomes a popup. usually not allowed for obvious reasons, but depends on the traffic source.

Simply use the following javascript:
Code:
window.onload = function(){alert("I am an alert box!");};


12-02-2014 06:52 AM #8 zeno (Administrator)

You guys should really just browse some porn sites. "How do popunders work?" will answer itself.


Home > Questions and Answers > General Questions