PDA

View Full Version : popunders



Tangible Asset
09-22-2011, 12:31 PM
Does anyone have/know about a script that would display a popunder for every XX number of visitors? i.e. 1 popunder for every 100th visitor?

Knumb3rs
09-22-2011, 12:41 PM
Don't know much about coding or scripts, but found this idk if it'd help

http://www.htmlgoodies.com/beyond/javascript/article.php/3471241/So-You-Want-A-Pop-Under-Window-Huh.htm

bryan
09-22-2011, 12:56 PM
if you're using wordpress, PopUp Domination does this

im not on the computer that has it but when i do ill upload it (if noone else has done it)

mr. spider
09-22-2011, 01:00 PM
http://javascript.internet.com/generators/popup-window.html

Tangible Asset
09-22-2011, 01:11 PM
I'm not using wordpress and neth that is for a popup not a popunder. I'm looking for one that isn't going to get stopped by a popup blocker and I need to figure out how to make not display on every page load.

oDb
09-22-2011, 01:53 PM
I got one that pops once per 24 hours per ip (pop under) you can set it for however much time you want...cookie track

Tangible Asset
09-22-2011, 04:18 PM
Mind sharing it? PM me

Knumb3rs
09-22-2011, 08:29 PM
Share 4 those green bars

f420
09-22-2011, 08:43 PM
http://marketing-tactics.info/blog/unblockable-popunder/

f420
09-22-2011, 08:43 PM
http://www.nowsell.com/pop-ups/pop-under-scripts.html

oDb
09-22-2011, 09:53 PM
right below header\/


<body onclick="loadpornpop();">
<script src="popup.js"></script>
<script type="text/javascript">loadPreferences()</script>



http://www.mediafire.com/?wfu3wsdib154i44


I had urbanka0s create this for me for 30-40 bucks.

should be pretty easy to figure out.

Tangible Asset
09-22-2011, 10:35 PM
Thanks :)

Now I just gotta figure out how to make it only display every XXX visitor.

oDb
09-22-2011, 11:29 PM
var popurl="http://live-cams-1.livejasmin.com/landing/?tid=103&psid=therabbi&pstour=t10&psprogram=REVS"; //change popurl to url for popunder
var winfeat='width=1020,height=806,scrollbars=0,locati on=0,resizable=0'; //0 = false, 1 = true. change window size too.
var viewed = "1"; //change this to your site name or something.
var exp = 1; // change this value to set amount of days cookie is alive.
var cookname = "jisss1"; //change this value to set the cookie name.
var title = "LIVE CHAT FREE" //change this to your popup window title.
var loc = "190,240" //set location for window to open on screen


function newCookie(name,value,days) {
if (days) {
var date = new Date();
date.setTime(date.getTime()+(days*24*60*60*1000));
var expires = "; expires="+date.toGMTString(); }
else var expires = "";
document.cookie = name+"="+value+expires+"; path=/"; }

function readCookie(name) {
var nameIt = name + "=";
var ca = document.cookie.split(';');
for(var i=0; i<ca.length; i++) {
var c = ca[i];
while (c.charAt(0)==' ') c = c.substring(1,c.length);
if (c.indexOf(nameIt) == 0) return c.substring(nameIt.length,c.length); }
return null; }

function loadpornpop() {
var num = readCookie(cookname)
if (num < 1) {
newCookie(cookname, viewed, exp);
pornpop=window.open(popurl, title, winfeat)
pornpop.blur();
window.focus();
pornpop.moveTo(loc);
}
}


in the java file it should be easy to understand 1 day = 24 hours