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?
greetings, fellow internet!
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?
Looking for long term SEO partner
Skype: azhiaziam209
Everything I post on this forum is fiction.
Don't know much about coding or scripts, but found this idk if it'd help
http://www.htmlgoodies.com/beyond/ja...Window-Huh.htm
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)
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.
Looking for long term SEO partner
Skype: azhiaziam209
Everything I post on this forum is fiction.
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
Mind sharing it? PM me
Looking for long term SEO partner
Skype: azhiaziam209
Everything I post on this forum is fiction.
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.
Thanks
Now I just gotta figure out how to make it only display every XXX visitor.
Looking for long term SEO partner
Skype: azhiaziam209
Everything I post on this forum is fiction.
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
Bookmarks