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. |
|
Discuss what's fucking going on, and which programs are best and worst. One-time "program" announcements from "established" webmasters are allowed. |
|
Thread Tools |
02-28-2015, 04:29 AM | #1 |
SO FUCKING SCAMMED
Industry Role:
Join Date: Mar 2010
Location: UK
Posts: 1,355
|
Popunder script
Can anyone provide a reliable pounder script that works in most browsers?
__________________
|
02-28-2015, 04:41 AM | #2 |
SO FUCKING SCAMMED
Industry Role:
Join Date: Mar 2010
Location: UK
Posts: 1,355
|
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>
__________________
|
02-28-2015, 06:19 AM | #3 |
Confirmed User
Industry Role:
Join Date: Nov 2005
Posts: 1,300
|
bump for popunder script
|
02-28-2015, 06:52 AM | #4 |
Confirmed User
Industry Role:
Join Date: Apr 2010
Posts: 1,063
|
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 |
02-28-2015, 07:21 AM | #5 | |
Confirmed User
Industry Role:
Join Date: Jul 2014
Location: 64 00 N, 26 00 E
Posts: 4,450
|
Quote:
|
|
02-28-2015, 08:14 AM | #6 |
Confirmed User
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?
|
03-04-2015, 04:21 AM | #7 |
Confirmed User
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?
|
03-04-2015, 07:27 AM | #8 |
Confirmed User
Industry Role:
Join Date: Sep 2009
Posts: 210
|
|
03-04-2015, 02:19 PM | #9 |
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 |
03-04-2015, 03:48 PM | #10 |
Confirmed User
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 |
03-04-2015, 03:57 PM | #11 |
Confirmed User
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. |
08-26-2015, 07:02 AM | #12 | |
Confirmed User
Industry Role:
Join Date: Sep 2006
Posts: 554
|
Quote:
|
|