GoFuckYourself.com - Adult Webmaster Forum

GoFuckYourself.com - Adult Webmaster Forum (https://gfy.com/index.php)
-   Fucking Around & Business Discussion (https://gfy.com/forumdisplay.php?f=26)
-   -   Is using popunderjs.com the only way to get popunder code that works nowadays..? (https://gfy.com/showthread.php?t=1221502)

JohnnyNight 10-13-2016 09:17 AM

Is using popunderjs.com the only way to get popunder code that works nowadays..?
 
I haven't done this for awhile and I know all the browsers make it hard to do pops but I when search around for popunder code popunderjs.com seems to be everywhere..

It's like whoever wrote this code wants to retire on it..:winkwink:

$99 a year for 1 domain... better pricing for more domains, but wow,, that's something..!!:frenchman

Tdash 10-13-2016 10:09 PM

is it legit?

Paul&John 10-14-2016 12:31 AM

Why wouldnt it be?

fris 10-14-2016 12:54 AM

no source code though, its encoded

money biz 10-14-2016 08:58 AM

tell me how its better then the piratebay code and I will signup under you.

Relic 10-14-2016 09:45 AM

Quote:

Originally Posted by money biz (Post 21222079)
tell me how its better then the piratebay code and I will signup under you.

ublock origin blocks tpb's popup but the popunderjs.com one opens. It's better for sure.

fris 10-14-2016 11:10 AM

99 a year aint bad, if you plan on actually making money using popunders.

AmateurBros 10-15-2016 09:00 AM

Anyone have a rough estimate of what percentage this would increase popunders by?

Colmike9 10-15-2016 09:02 AM

This one still works for me
Code:

<SCRIPT>
var puShown = false;
var PopWidth = (screen.width);
var PopHeight = (screen.height);
var PopFocus = 0;
var _Top = null;

function GetWindowHeight() {
var myHeight = 0;
if( typeof( _Top.window.innerHeight ) == 'number' ) {
myHeight = _Top.window.innerHeight;
} else if( _Top.document.documentElement && _Top.document.documentElement.clientHeight ) {
myHeight = _Top.document.documentElement.clientHeight;
} else if( _Top.document.body && _Top.document.body.clientHeight ) {
myHeight = _Top.document.body.clientHeight;
}
return myHeight;
}
function GetWindowWidth() {
var myWidth = 0;
if( typeof( _Top.window.innerWidth ) == 'number' ) {
myWidth = _Top.window.innerWidth;
} else if( _Top.document.documentElement && _Top.document.documentElement.clientWidth ) {
myWidth = _Top.document.documentElement.clientWidth;
} else if( _Top.document.body && _Top.document.body.clientWidth ) {
myWidth = _Top.document.body.clientWidth;
}
return myWidth;
}
function GetWindowTop() {
return (_Top.window.screenTop != undefined) ? _Top.window.screenTop : _Top.window.screenY;
}
function GetWindowLeft() {
return (_Top.window.screenLeft != undefined) ? _Top.window.screenLeft : _Top.window.screenX;
}
function doOpen(url)
{
var popURL = "about:blank"
var popID = "ad_" + Math.floor(89999999*Math.random()+10000000);
var pxLeft = 0;
var pxTop = 0;
pxLeft = (GetWindowLeft() + (GetWindowWidth() / 2) - (PopWidth / 2));
pxTop = (GetWindowTop() + (GetWindowHeight() / 2) - (PopHeight / 2));
if ( puShown == true )
{
return true;
}
var PopWin=_Top.window.open(popURL,popID,'toolbar=0,sc rollbars=1,location=1,statusbar=1,menubar=1,resiza ble=1,top=' + pxTop + ',left=' + pxLeft + ',width=' + PopWidth + ',height=' + PopHeight);
if (PopWin)
{
puShown = true;
if (PopFocus == 0)
{
PopWin.blur();
if (navigator.userAgent.toLowerCase().indexOf("applewebkit") > -1)
{
_Top.window.blur();
_Top.window.focus();
}
}
PopWin.Init = function(e) {
with (e) {
Params = e.Params;
Main = function(){
if (typeof window.mozPaintCount != "undefined") {
var x = window.open("about:blank");
x.close();
}
var popURL = Params.PopURL;
try { opener.window.focus(); }
catch (err) { }
window.location = popURL;
}
Main();
}
};
PopWin.Params = {
PopURL: url
}
PopWin.Init(PopWin);
}
return PopWin;
}
function setCookie(name, value, time)
{
var expires = new Date();
expires.setTime( expires.getTime() + time );
document.cookie = name + '=' + value + '; path=/;' + '; expires=' + expires.toGMTString() ;
}
function getCookie(name) {
var cookies = document.cookie.toString().split('; ');
var cookie, c_name, c_value;
for (var n=0; n<cookies.length; n++) {
cookie = cookies[n].split('=');
c_name = cookie[0];
c_value = cookie[1];
if ( c_name == name ) {
return c_value;
}
}
return null;
}
function initPu()
{
_Top = self;
if (top != self)
{
try
{
if (top.document.location.toString())
_Top = top;
}
catch(err) { }
}
if ( document.attachEvent )
{
document.attachEvent( 'onclick', checkTarget );
}
else if ( document.addEventListener )
{
document.addEventListener( 'click', checkTarget, false );
}
}

function checkTarget(e)
{
if ( !getCookie('popundr') ) {
var e = e || window.event;
var win = doOpen('http://POPUPURL.com');
setCookie('popundr', 1, 1*60*60*1000);
}
}
initPu();
</script>


anexsia 10-15-2016 09:35 AM

Quote:

Originally Posted by fris (Post 21221131)
no source code though, its encoded

There's an older version of it that was forked on github

JohnnyNight 10-15-2016 09:47 AM

Wow... Colmike7

That's awesome of you..!!

Thanks.... :GFYBand

fris 10-16-2016 07:07 AM

popunderjs is a bit better than that code though.

Colmike9 10-16-2016 07:50 AM

Quote:

Originally Posted by fris (Post 21225877)
popunderjs is a bit better than that code though.

Probably, that code is a few years old, but it still works and it's free. You can also modify it to do a few more things which I'm guessing that the paid version won't allow. :upsidedow

levd 10-16-2016 08:35 AM

I have a tab under script.

https://gfy.com/sell-and-buy-forum/12...ab-script.html

Denny 10-16-2016 08:44 AM

Quote:

Originally Posted by Colmike7 (Post 21224428)
This one still works for me
Code:



Thanks, will try it on some sites :pimp

Panty Snatcher 10-16-2016 08:59 AM

I still will like to know how more efficient the popunder.js is over the others

levd 10-16-2016 11:14 AM

Colmike, this script pops up for me, its working but its popping up.

People looking for tab "under" https://gfy.com/sell-and-buy-forum/12...ab-script.html

AmateurBros 10-16-2016 11:42 AM

Quote:

Originally Posted by Colmike7 (Post 21225934)
Probably, that code is a few years old, but it still works and it's free. You can also modify it to do a few more things which I'm guessing that the paid version won't allow. :upsidedow

I'm not really seeing any difference in my popunder stats after throwing this on one of my sites.

Colmike9 10-16-2016 12:12 PM

Quote:

Originally Posted by AmateurBros (Post 21226345)
I'm not really seeing any difference in my popunder stats after throwing this on one of my sites.

Think it's time to update that code again? :upsidedow

It's always had popover issues with a couple of browsers, too, but it's still not blocked like some scripts.

money biz 10-16-2016 02:46 PM

Quote:

Originally Posted by Relic (Post 21222280)
ublock origin blocks tpb's popup but the popunderjs.com one opens. It's better for sure.


you try the code on your own domain? They keep the code updated its good.

Panty Snatcher 10-16-2016 03:28 PM

any one has the piratebay popunder code

money biz 10-16-2016 03:41 PM

Quote:

Originally Posted by Panty Snatcher (Post 21226543)
any one has the piratebay popunder code

LOL \:1orglaugh/

Panty Snatcher 10-16-2016 04:01 PM

you laught , but having looked at other scripts , I think they have a php counterpart

Panty Snatcher 10-17-2016 07:22 AM

The real question for me is

is the script worth the $99

Will it increase the popU productivity to justtify the cost


All times are GMT -7. The time now is 04:55 PM.

Powered by vBulletin® Version 3.8.8
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
©2000-, AI Media Network Inc123