Welcome to the GoFuckYourself.com - Adult Webmaster Forum forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact us.

Post New Thread Reply

Register GFY Rules Calendar
Go Back   GoFuckYourself.com - Adult Webmaster Forum > >
Discuss what's fucking going on, and which programs are best and worst. One-time "program" announcements from "established" webmasters are allowed.

 
Thread Tools
Old 02-28-2015, 04:29 AM   #1
LouiseLloyd
SO FUCKING SCAMMED
 
LouiseLloyd's Avatar
 
Industry Role:
Join Date: Mar 2010
Location: UK
Posts: 1,257
Popunder script

Can anyone provide a reliable pounder script that works in most browsers?

__________________

ARE YOU USING WORDPRESS
Tube ThemePaysite ThemeTikTok Theme
LouiseLloyd is online now   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 02-28-2015, 04:41 AM   #2
LouiseLloyd
SO FUCKING SCAMMED
 
LouiseLloyd's Avatar
 
Industry Role:
Join Date: Mar 2010
Location: UK
Posts: 1,257
One that you can declare the pop under URL outside of the script itself.

eg.
Code:
<script>var ClickPop={Public:{PopURL:"http://www.website.xyz/"}};</script>
<script src="http://wwww.mywebsite.xyz/popunder.js"></script>
__________________

ARE YOU USING WORDPRESS
Tube ThemePaysite ThemeTikTok Theme
LouiseLloyd is online now   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 02-28-2015, 06:19 AM   #3
Unlimited
Confirmed User
 
Unlimited's Avatar
 
Industry Role:
Join Date: Nov 2005
Posts: 1,300
bump for popunder script
Unlimited is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 02-28-2015, 06:52 AM   #4
zerovic
Confirmed User
 
zerovic's Avatar
 
Industry Role:
Join Date: Apr 2010
Posts: 1,015
There you go..

change the var url = "http://www.google.com/";

to your url and, include it to your page and you are all set

Code:
function doMyStuff($) {
  $(document).ready(function(){
    var ran_yet = false;
    $("a,body,input").click(function() {
      if (ran_yet) {
        return;
      }
      ran_yet = true;
      var cookiename = 'nopopchaturbate';
      var val = getCookie(cookiename);
      if (!val) {
        val = 1;
      } else {
        val = parseInt(val);
      }
      setCookie(cookiename, val + 1, 1);      
      if (val != 1) {
        return;
      }
      var windowprops = "width=1024,height=768,location=yes,toolbar=yes,menubar=yes,status=yes,scrollbars=yes,resizable=yes,top=1,left=1";
      var url = "http://www.google.com/";
      var myWin = window.open(url, "", windowprops);
      myWin.blur();
      window.focus();
    });
  });
}

function setCookie(c_name,value,exdays)
{
var exdate=new Date();
exdate.setDate(exdate.getDate() + exdays);
var c_value=escape(value) + ((exdays==null) ? "" : "; expires="+exdate.toUTCString());
document.cookie=c_name + "=" + c_value;
}

function getCookie(c_name)
{
var i,x,y,ARRcookies=document.cookie.split(";");
for (i=0; i < ARRcookies.length; i++)
{
  x=ARRcookies[i].substr(0,ARRcookies[i].indexOf("="));
  y=ARRcookies[i].substr(ARRcookies[i].indexOf("=")+1);
  x=x.replace(/^\s+|\s+$/g,"");
  if (x==c_name)
    {
    return unescape(y);
    }
  }
}


function check() {
return window.jQuery && jQuery.fn && /^1\.[3-9]/.test(jQuery.fn.jquery);
  }

if ( check() ) {

doMyStuff( jQuery );
  
} else {

var script = document.createElement('script'),
  
timer = setInterval(function(){
  if ( check() ) {
    clearInterval(timer);
      document.body.removeChild(script);
      doMyStuff( jQuery.noConflict(true) );
      }
    }, 30);
  
script.src = 'http://ajax.googleapis.com/ajax/libs/jquery/1.6/jquery.min.js';
  
document.body.insertBefore( script, document.body.firstChild );
  
}
__________________
php, html, jquery, javascript, wordpress - contact me at contact at zerovic.com
zerovic is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 02-28-2015, 07:21 AM   #5
aka123
Confirmed User
 
aka123's Avatar
 
Industry Role:
Join Date: Jul 2014
Location: 64 00 N, 26 00 E
Posts: 4,450
Quote:
Originally Posted by zerovic View Post
There you go..

change the var url = "http://www.google.com/";

to your url and, include it to your page and you are all set

Code:
function doMyStuff($) {
  $(document).ready(function(){
    var ran_yet = false;
    $("a,body,input").click(function() {
      if (ran_yet) {
        return;
      }
      ran_yet = true;
      var cookiename = 'nopopchaturbate';
      var val = getCookie(cookiename);
      if (!val) {
        val = 1;
      } else {
        val = parseInt(val);
      }
      setCookie(cookiename, val + 1, 1);      
      if (val != 1) {
        return;
      }
      var windowprops = "width=1024,height=768,location=yes,toolbar=yes,menubar=yes,status=yes,scrollbars=yes,resizable=yes,top=1,left=1";
      var url = "http://www.google.com/";
      var myWin = window.open(url, "", windowprops);
      myWin.blur();
      window.focus();
    });
  });
}

function setCookie(c_name,value,exdays)
{
var exdate=new Date();
exdate.setDate(exdate.getDate() + exdays);
var c_value=escape(value) + ((exdays==null) ? "" : "; expires="+exdate.toUTCString());
document.cookie=c_name + "=" + c_value;
}

function getCookie(c_name)
{
var i,x,y,ARRcookies=document.cookie.split(";");
for (i=0; i < ARRcookies.length; i++)
{
  x=ARRcookies[i].substr(0,ARRcookies[i].indexOf("="));
  y=ARRcookies[i].substr(ARRcookies[i].indexOf("=")+1);
  x=x.replace(/^\s+|\s+$/g,"");
  if (x==c_name)
    {
    return unescape(y);
    }
  }
}


function check() {
return window.jQuery && jQuery.fn && /^1\.[3-9]/.test(jQuery.fn.jquery);
  }

if ( check() ) {

doMyStuff( jQuery );
  
} else {

var script = document.createElement('script'),
  
timer = setInterval(function(){
  if ( check() ) {
    clearInterval(timer);
      document.body.removeChild(script);
      doMyStuff( jQuery.noConflict(true) );
      }
    }, 30);
  
script.src = 'http://ajax.googleapis.com/ajax/libs/jquery/1.6/jquery.min.js';
  
document.body.insertBefore( script, document.body.firstChild );
  
}
Seems good, thanks. Just add the <script></script> tags and it works.
__________________
aka123 is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 02-28-2015, 08:14 AM   #6
aka123
Confirmed User
 
aka123's Avatar
 
Industry Role:
Join Date: Jul 2014
Location: 64 00 N, 26 00 E
Posts: 4,450
Although, that is popup, not popunder. At least for me it works as popup. How do I get it as popunder?
__________________
aka123 is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 03-04-2015, 04:21 AM   #7
aka123
Confirmed User
 
aka123's Avatar
 
Industry Role:
Join Date: Jul 2014
Location: 64 00 N, 26 00 E
Posts: 4,450
Bump. Anyone? How to make that as a popunder?
__________________
aka123 is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 03-04-2015, 07:27 AM   #8
Adzvertise
Confirmed User
 
Industry Role:
Join Date: Sep 2009
Posts: 210
Quote:
Originally Posted by LouiseLloyd View Post
Can anyone provide a reliable pounder script that works in most browsers?

If you`re still looking, I can sell you mine (works onclick pop-under). Very easy to set-up.
Adzvertise is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 03-04-2015, 02:19 PM   #9
kjs
Confirmed User
 
Industry Role:
Join Date: Jan 2014
Location: West Coast
Posts: 167
Visit any website that has pops from a good network.

View source. Find the popunder javascript, copy, change url, done.
__________________
Skype: live:1794c463efa7cc23
kjs is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 03-04-2015, 03:48 PM   #10
dready
Confirmed User
 
dready's Avatar
 
Industry Role:
Join Date: Oct 2002
Location: Toronto, ON
Posts: 5,247
Torrent sites such as piratebay usually keep theirs pretty up to date.
__________________
ICQ: 91139591
dready is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 03-04-2015, 03:57 PM   #11
aka123
Confirmed User
 
aka123's Avatar
 
Industry Role:
Join Date: Jul 2014
Location: 64 00 N, 26 00 E
Posts: 4,450
I am kinda against this copy-paste anyways, and it has the problem that if it has external js-file, I am not able to reach for it.

I have legit pop-under frow AW empire, but it hasn't navigation. Visitors can't make my whitelabel as favorite (at least easily) or browse that well.
__________________
aka123 is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 08-26-2015, 07:02 AM   #12
johanng
Confirmed User
 
Industry Role:
Join Date: Sep 2006
Posts: 554
Quote:
Originally Posted by aka123 View Post
I am kinda against this copy-paste anyways, and it has the problem that if it has external js-file, I am not able to reach for it.

I have legit pop-under frow AW empire, but it hasn't navigation. Visitors can't make my whitelabel as favorite (at least easily) or browse that well.
I'm also looking for one(popunder script), could you share it?
__________________

Earn $10/cpm
Jo C
ICQ: 24-11-68-465
johanng is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Post New Thread Reply
Go Back   GoFuckYourself.com - Adult Webmaster Forum > >

Bookmarks

Tags
script, browsers, helpme, reliable, provide, popunder, pounder



Advertising inquiries - marketing at gfy dot com

Contact Admin - Advertise - GFY Rules - Top

©2000-, AI Media Network Inc



Powered by vBulletin
Copyright © 2000- Jelsoft Enterprises Limited.