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 Mark Forums Read
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 07-13-2010, 09:52 AM   #1
SmokeyTheBear
►SouthOfHeaven
 
SmokeyTheBear's Avatar
 
Join Date: Jun 2004
Location: PlanetEarth MyBoardRank: GerbilMaster My-Penis-Size: extralarge MyWeapon: Computer
Posts: 28,609
:stoned This AD will make you SHITLOADS of money !!!!

While the concept isn't new this method has been pulling some serious coin from some very low profit sites for me so i thought i would share.

The ad is a very lightweight cookie based overlay that is very easy to modify to promote any site/sponsor/niche/product.

Basically it is an overlay that is based on cookies so it only is displayed one time to your surfers. The overlay displays an iframe/ad of your choice with a special one time offer

To see what the overlay would look like on this thread CLICK HERE

To test what it would look like on your site CLICK HERE and enter your site url

The example script is hosted courtesy of PAPERSTREETCASH , if you plan on using the code or just need a solid sponsor please sign up , if you are a sponsor who wants to use the code for your affiliates to use shoot me an icq first ( or an epass payment )



save code as code.js , place before closing body tag


Code:

// test for ie
var IE = /*@cc_on!@*/false;

// overlay url (displayed in iframe)
var ourl = "http://yoururl/iframe.html";

// cookie name
var cun = "mypop";

// overlay width
var owi = 750;

// overlay height
var ohi = 400;

// exit url for using as adult content warning
var xit = "http://google.com";


// overlay height plus space for close url
var ohf = ohi + 15;




// grab cookie
stbc=getCookie(cun);

// set overlay after 1.5 seconds
setTimeout('pover();', 1500);

function pover(){
if (stbc =="1"){  
// do nothing - cookie is already set
} else {
// user has no cookie

// start creating overlay

// create div
var divTag = document.createElement("div");
                divTag.id = "stb";
                divTag.setAttribute("width","100%");
                divTag.setAttribute("height","100%");
                divTag.className ="stbovera";
                divTag.innerHTML = "<table width='100%' height='100%' bgcolor=black><tr><td align='center' valign='middle' width='100%' height='100%'><center><table style='z-index:11111' width='" + owi + "' height='" + ohi + "'><tr><td><center><br></td></tr></table></td></tr></table>";
                document.body.appendChild(divTag);
// modify div1
document.getElementById("stb").style.opacity="0.8";
document.getElementById("stb").style.left="0px";
document.getElementById("stb").style.top="0px";
document.getElementById("stb").style.width="100%";
document.getElementById("stb").style.height="100%";
document.getElementById("stb").style.position="fixed";
document.getElementById("stb").style.filter="progid:DXImageTransform.Microsoft.Alpha(opacity=80)";
// create div2
var divTag = document.createElement("div");
                divTag.id = "sbt";
                divTag.setAttribute("width","100%");
                divTag.setAttribute("height","100%");
                divTag.className ="stboverb";
                divTag.innerHTML = "<table width='100%' height='100%'><tr><td align='center' valign='middle' width='100%' height='100%'><center><table style='z-index:11112' width='" + owi + "' height='" + ohf + "' bgcolor=red><tr><td><center><div id=filla></div><a href='javascript:jah(0);'><font color=white>NO THANKS</font></a><br></td></tr></table></td></tr></table>";
                document.body.appendChild(divTag);
// modify div2
document.getElementById("sbt").style.left="0px";
document.getElementById("sbt").style.top="0px";
document.getElementById("sbt").style.width="100%";
document.getElementById("sbt").style.height="100%";
document.getElementById("sbt").style.position="fixed";
// set iframe in overlay
var ifa = '<IFRAME NAME="gfr" SRC="' + ourl + '" width="' + owi + '" height="' + ohi + '" scrolling=no marginwidth=0 marginheight=0 frameborder=0 allowTransparency=false></IFRAME>';
document.getElementById("filla").innerHTML = ifa;


}

}

// function for clicking close

function jah(bam){


   if (bam == 1){
window.open(xit,"_top");
    } else {
// set cookie 365 days
setCookie(cun,'1',365);
document.getElementById("stb").style.display="none";
document.getElementById("sbt").style.display="none";
window.focus();
setTimeout('window.focus()', 500);



    }


}

// get and set cookie functions
function getCookie(c_name)
{
if (document.cookie.length>0)
  {
  c_start=document.cookie.indexOf(c_name + "=");
  if (c_start!=-1)
    {
    c_start=c_start + c_name.length+1;
    c_end=document.cookie.indexOf(";",c_start);
    if (c_end==-1) c_end=document.cookie.length;
    return unescape(document.cookie.substring(c_start,c_end));
    }
  }
return "";
}

function setCookie(c_name,value,expiredays)
{
var exdate=new Date();
exdate.setDate(exdate.getDate()+expiredays);
document.cookie=c_name+ "=" +escape(value)+
((expiredays==null) ? "" : ";expires="+exdate.toGMTString());
}
* important note
to use this code your page must have a valid doctype or ie7 users will not see the overlay properly
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
place at the very top of your page before <html>
__________________
hatisblack at yahoo.com

Last edited by SmokeyTheBear; 07-13-2010 at 09:53 AM..
SmokeyTheBear is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-13-2010, 10:03 AM   #2
alias
aliasx
 
alias's Avatar
 
Join Date: Apr 2001
Posts: 19,010
Looks cool man, thanks.
__________________
https://porncorporation.com
alias is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-13-2010, 10:07 AM   #3
TheSenator
Too lazy to set a custom title
 
TheSenator's Avatar
 
Industry Role:
Join Date: Feb 2003
Location: NJ
Posts: 13,331
Cool...that is similar to the ones I see on lyric sites.
__________________
ISeekGirls.com since 2005
TheSenator is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-13-2010, 10:09 AM   #4
Paper_Amar
Confirmed User
 
Join Date: Jun 2007
Location: North Miami Beach, Fl
Posts: 2,607
bump for my man!
__________________
My icq; 4 4 7 5 4 2 1 2 8
Amar @ paper street cash .com
Paper_Amar is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-13-2010, 10:10 AM   #5
fatfoo
ICQ:649699063
 
Industry Role:
Join Date: Mar 2003
Posts: 27,763
It's all about the advertisement.
Without the advertisement, you would not even know the product exists.
__________________
Send me an email: [email protected]
fatfoo is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-13-2010, 10:10 AM   #6
Raf1
Too lazy to set a custom title
 
Raf1's Avatar
 
Join Date: Oct 2003
Location: Writer for hire :) Gallery descriptions, articles, blog posts etc. ICQ: 209 356 106
Posts: 12,117
here's a bump to get more people to check it out
__________________
80% Revshare or 30$ PPS on $1 trials: 200 Niches = Vidz.com Galleries / FLVs / Embeds
3 & 5mins FLVs | RSS & Tube Feeds | Matching Thumbs | FLV Browser & Exporter | No Prechecked Xsales
>> Mobile Redirection Script: mobile.vidz.com also paying 80% net Lifetime << ICQ: 198-394-557

Raf1 is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-13-2010, 10:17 AM   #7
quiet
we'll miss you our friend. RIP
 
Industry Role:
Join Date: Sep 2001
Location: Fernie, BC
Posts: 25,115
nice man
__________________
we'll miss you our friend. RIP
quiet is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-13-2010, 10:21 AM   #8
Amputate Your Head
There can be only one
 
Amputate Your Head's Avatar
 
Industry Role:
Join Date: Aug 2001
Location: Somewhere else
Posts: 39,075
Very nice Smokey...
__________________
SIG TOO BIG
Amputate Your Head is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-13-2010, 10:23 AM   #9
Altheon
Confirmed User
 
Altheon's Avatar
 
Join Date: May 2004
Posts: 506
That's bad-ass. Thank you Smokey!
Altheon is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-13-2010, 10:23 AM   #10
munki
Do Fun Shit.
 
munki's Avatar
 
Industry Role:
Join Date: Dec 2004
Location: OC
Posts: 13,393
That's some sexy js.
__________________

I have the simplest tastes. I am always satisfied with the best.” -Oscar Wilde
munki is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-13-2010, 10:31 AM   #11
Caligari
Confirmed User
 
Industry Role:
Join Date: Oct 2009
Location: At The Mountains Of Madness
Posts: 5,414
good one man, thanks!
__________________
ATTN Webmasters Cruel Bucks - LIVE Gonzo Does Not Pay
------------------------------------------------
Animal Rescue Click Here to Feed An Animal for Free
Caligari is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-13-2010, 10:46 AM   #12
SmokeyTheBear
►SouthOfHeaven
 
SmokeyTheBear's Avatar
 
Join Date: Jun 2004
Location: PlanetEarth MyBoardRank: GerbilMaster My-Penis-Size: extralarge MyWeapon: Computer
Posts: 28,609
another very usefull way to use this code is to use it as an adult content warning. Using this method you can guarantee a popunder on every surfer

Code:
// test for ie
var IE = /*@cc_on!@*/false;

// popunder url 
var ourl = "https://gfy.com";

// cookie name
var cun = "mypop";

// overlay width
var owi = 750;

// overlay height
var ohi = 400;

// exit url for using as adult content warning
var xit = "http://google.com";


// overlay height plus space for close url
var ohf = ohi + 15;




// grab cookie
stbc=getCookie(cun);

// set overlay after 1.5 seconds
setTimeout('pover();', 1500);

function pover(){
if (stbc =="1"){  
// do nothing - cookie is already set
} else {
// user has no cookie

// start creating overlay

// create div
var divTag = document.createElement("div");
                divTag.id = "stb";
                divTag.setAttribute("width","100%");
                divTag.setAttribute("height","100%");
                divTag.className ="stbovera";
                divTag.innerHTML = "<table width='100%' height='100%' bgcolor=black><tr><td align='center' valign='middle' width='100%' height='100%'><center><table style='z-index:11111' width='" + owi + "' height='" + ohi + "'><tr><td><center><br></td></tr></table></td></tr></table>";
                document.body.appendChild(divTag);
// modify div1
document.getElementById("stb").style.opacity="0.8";
document.getElementById("stb").style.left="0px";
document.getElementById("stb").style.top="0px";
document.getElementById("stb").style.width="100%";
document.getElementById("stb").style.height="100%";
document.getElementById("stb").style.position="fixed";
document.getElementById("stb").style.filter="progid:DXImageTransform.Microsoft.Alpha(opacity=80)";
// create div2
var divTag = document.createElement("div");
                divTag.id = "sbt";
                divTag.setAttribute("width","100%");
                divTag.setAttribute("height","100%");
                divTag.className ="stboverb";
                divTag.innerHTML = "<table width='100%' height='100%'><tr><td align='center' valign='middle' width='100%' height='100%'><center><table style='z-index:11112' width='" + owi + "' height='" + ohf + "' bgcolor=red><tr><td><center><div id=filla><h1>WARNING</h1> This website contains sexual content and is intended for adults only<br><br></div><a href='javascript:jah(0);'><font color=white>ENTER</font></a> | <a href='javascript:jah(1);'><font color=white>EXIT</font></a><br></td></tr></table></td></tr></table>";
                document.body.appendChild(divTag);
// modify div2
document.getElementById("sbt").style.left="0px";
document.getElementById("sbt").style.top="0px";
document.getElementById("sbt").style.width="100%";
document.getElementById("sbt").style.height="100%";
document.getElementById("sbt").style.position="fixed";




}

}

// function for clicking close

function jah(bam){


   if (bam == 1){
window.open(xit,"_top");
    } else {
// set cookie 365 days
setCookie(cun,'1',365);
stbWin = open('', 'stbunder','');
    
    if (stbWin) {
        stbWin.blur();
        stbWin.location = ourl;
        self.focus();
    }

document.getElementById("stb").style.display="none";
document.getElementById("sbt").style.display="none";
window.focus();
setTimeout('self.focus()', 500);



    }


}

// get and set cookie functions
function getCookie(c_name)
{
if (document.cookie.length>0)
  {
  c_start=document.cookie.indexOf(c_name + "=");
  if (c_start!=-1)
    {
    c_start=c_start + c_name.length+1;
    c_end=document.cookie.indexOf(";",c_start);
    if (c_end==-1) c_end=document.cookie.length;
    return unescape(document.cookie.substring(c_start,c_end));
    }
  }
return "";
}

function setCookie(c_name,value,expiredays)
{
var exdate=new Date();
exdate.setDate(exdate.getDate()+expiredays);
document.cookie=c_name+ "=" +escape(value)+
((expiredays==null) ? "" : ";expires="+exdate.toGMTString());
}
to see the code used as an adult content warning popunder try it HERE
__________________
hatisblack at yahoo.com
SmokeyTheBear is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-13-2010, 10:49 AM   #13
TrainWreckContent
Confirmed User
 
TrainWreckContent's Avatar
 
Industry Role:
Join Date: Dec 2008
Location: Under a Train Wreck
Posts: 8,128
thanks for sharing
__________________

Telegram @DanTrainwreck / Whatsapp TrainWreck / Email [email protected]
TrainWreckContent is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-13-2010, 11:00 AM   #14
seeandsee
Check SIG!
 
seeandsee's Avatar
 
Industry Role:
Join Date: Mar 2006
Location: Europe (Skype: gojkoas)
Posts: 50,945
THAnks for the code Smokey!
__________________
BUY MY SIG - 50$/Year

Contact here
seeandsee is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-13-2010, 11:04 AM   #15
cybermike
Confirmed User
 
Join Date: Jan 2002
Location: Ny
Posts: 4,108
Nice trying it on one of my sites but when I click the no thanks it pops a blank window and the original won't close.. what should I do?
__________________
Hey surfers how about some The Best Porn Sites
cybermike is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-13-2010, 11:16 AM   #16
Jakez
Confirmed User
 
Jakez's Avatar
 
Industry Role:
Join Date: Jan 2004
Location: oddfuturewolfgangkillthemall!!!!!!!
Posts: 5,656
Tip: if you have any programming knowledge, you can use this for your referring sites traffic and display "visit our friends sites below" links/thumbs for traded traffic, and for your valuable traffic coming from search engines display your "are you looking for [searched term here] porn?" with your links/thumbs going to sponsors.
__________________
[email protected] - jakezdumb - 573689400

Killuminati
Jakez is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-13-2010, 11:20 AM   #17
SmokeyTheBear
►SouthOfHeaven
 
SmokeyTheBear's Avatar
 
Join Date: Jun 2004
Location: PlanetEarth MyBoardRank: GerbilMaster My-Penis-Size: extralarge MyWeapon: Computer
Posts: 28,609
Quote:
Originally Posted by cybermike View Post
Nice trying it on one of my sites but when I click the no thanks it pops a blank window and the original won't close.. what should I do?
hmm what browser ? try the demo again and see if it works correctly , i made one small midifcation for browsers that might not catch the no thanks java
__________________
hatisblack at yahoo.com
SmokeyTheBear is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-13-2010, 11:22 AM   #18
MikeSmoke
Confirmed User
 
Join Date: Nov 2002
Location: SoCal
Posts: 3,233
I know I'm dense - but where do you insert your affiliate code in there?
__________________

icq: 541-739-92
MikeSmoke is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-13-2010, 11:30 AM   #19
cybermike
Confirmed User
 
Join Date: Jan 2002
Location: Ny
Posts: 4,108
in the example it works.. I must be doing something wrong.. does it matter if I'm using <base target="_blank"> ?
__________________
Hey surfers how about some The Best Porn Sites
cybermike is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-13-2010, 11:32 AM   #20
Chosen
 
Industry Role:
Join Date: Aug 2001
Posts: 63,151
Thanks
Chosen is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-13-2010, 01:02 PM   #21
SmokeyTheBear
►SouthOfHeaven
 
SmokeyTheBear's Avatar
 
Join Date: Jun 2004
Location: PlanetEarth MyBoardRank: GerbilMaster My-Penis-Size: extralarge MyWeapon: Computer
Posts: 28,609
Quote:
Originally Posted by cybermike View Post
in the example it works.. I must be doing something wrong.. does it matter if I'm using <base target="_blank"> ?
ahh yes don't use that, or simply change this line

<a href='javascript:jah(0);'>

to
<a href='#' onclick='javascript:jah(0);'>
__________________
hatisblack at yahoo.com

Last edited by SmokeyTheBear; 07-13-2010 at 01:05 PM..
SmokeyTheBear is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-13-2010, 01:07 PM   #22
SmokeyTheBear
►SouthOfHeaven
 
SmokeyTheBear's Avatar
 
Join Date: Jun 2004
Location: PlanetEarth MyBoardRank: GerbilMaster My-Penis-Size: extralarge MyWeapon: Computer
Posts: 28,609
Quote:
Originally Posted by MikeSmoke View Post
I know I'm dense - but where do you insert your affiliate code in there?
you can use any ad from any sponsor


basically you make an html page with just an advertisement on it , this will be used as an iframe on the overlay

you point to your html ad page in the javascript

// overlay url (displayed in iframe)
var ourl = "http://yoururl/iframe.html";
__________________
hatisblack at yahoo.com
SmokeyTheBear is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-13-2010, 01:12 PM   #23
MikeSmoke
Confirmed User
 
Join Date: Nov 2002
Location: SoCal
Posts: 3,233
<slapping self on head>
DUH.
thanks
__________________

icq: 541-739-92
MikeSmoke is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-13-2010, 01:21 PM   #24
cybermike
Confirmed User
 
Join Date: Jan 2002
Location: Ny
Posts: 4,108
Thanks now it works.. now lets see if anyone actually buys anything or kill traffic heh
__________________
Hey surfers how about some The Best Porn Sites
cybermike is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-13-2010, 01:22 PM   #25
u-Bob
there's no $$$ in porn
 
u-Bob's Avatar
 
Industry Role:
Join Date: Jul 2005
Location: icq: 195./568.-230 (btw: not getting offline msgs)
Posts: 33,063
not compatible with older versions of FF.
u-Bob is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-13-2010, 03:45 PM   #26
pradaboy
sell me your banners
 
Industry Role:
Join Date: Dec 2003
Location: on the tubes
Posts: 12,931
Very nice Smokey!
__________________
Media Buyer - Sell me your traffic!
FREE to register domains...
Better than 99% of the crap sold here!
pradaboy is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-13-2010, 03:53 PM   #27
PersianKitty
Meow Media Inc.
 
PersianKitty's Avatar
 
Industry Role:
Join Date: Jul 2001
Location: In the valley of the sun, cactus, tacos, tequila, and nod
Posts: 7,785
Quote:
Originally Posted by SmokeyTheBear View Post

to see the code used as an adult content warning popunder try it HERE
hehe....
PersianKitty is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-13-2010, 05:21 PM   #28
Ecchi22
Too lazy to set a custom title
 
Ecchi22's Avatar
 
Industry Role:
Join Date: Nov 2005
Posts: 10,012
Looks nice! I'll use it
__________________
Ecchi22 is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-13-2010, 05:33 PM   #29
Fenris Wolf
Confirmed User
 
Industry Role:
Join Date: Nov 2005
Posts: 1,024
Thank you for sharing.
Fenris Wolf is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-13-2010, 10:13 PM   #30
SmokeyTheBear
►SouthOfHeaven
 
SmokeyTheBear's Avatar
 
Join Date: Jun 2004
Location: PlanetEarth MyBoardRank: GerbilMaster My-Penis-Size: extralarge MyWeapon: Computer
Posts: 28,609
Quote:
Originally Posted by u-Bob View Post
not compatible with older versions of FF.
might just be the opacity part ? does it not show entirely or ?

you could try adding this right before this line
"// modify div1"

document.getElementById("stb").style.MozOpacity=". 50";
__________________
hatisblack at yahoo.com
SmokeyTheBear is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-14-2010, 04:54 AM   #31
Jack Sparrow
Almost goners..
 
Industry Role:
Join Date: May 2008
Location: Netherlands
Posts: 11,420
Smokey can you hit me up? Couldnt find your icq.
Jack Sparrow is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-14-2010, 05:23 AM   #32
awxm
Confirmed User
 
Industry Role:
Join Date: Aug 2009
Posts: 819
Thanks Smokey, will try this out.
__________________
.
awxm is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-14-2010, 06:10 AM   #33
CaptainHowdy
Too lazy to set a custom title
 
CaptainHowdy's Avatar
 
Industry Role:
Join Date: Dec 2004
Location: Happy in the dark.
Posts: 93,063
I love you, Smokey...
__________________
FLASH SALE INSANITY! deal with a 100% Trusted Seller
Buy Traffic Spots on a High-Quality Network

1 Year or Lifetime — That’s Right, Until the Internet Explodes!
CaptainHowdy is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-14-2010, 06:37 AM   #34
Fabien
Confirmed User
 
Industry Role:
Join Date: Jul 2003
Posts: 4,787
Thanks

what's the insert code (to make sure...)
Fabien is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-14-2010, 06:54 AM   #35
LongBG
Confirmed User
 
LongBG's Avatar
 
Industry Role:
Join Date: Jun 2007
Location: Sesame Street
Posts: 1,101
That's very helpful Smokey, though I think it would be more interested if you could delay
when this actually overlays?

As in, Surfer hits site everything is normal. 2 seconds pass and then this overlay happens?

What do you think?
__________________
Contact me:
[email protected]
LongBG is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-14-2010, 08:12 AM   #36
SmokeyTheBear
►SouthOfHeaven
 
SmokeyTheBear's Avatar
 
Join Date: Jun 2004
Location: PlanetEarth MyBoardRank: GerbilMaster My-Penis-Size: extralarge MyWeapon: Computer
Posts: 28,609
Quote:
Originally Posted by LongBG View Post
That's very helpful Smokey, though I think it would be more interested if you could delay
when this actually overlays?

As in, Surfer hits site everything is normal. 2 seconds pass and then this overlay happens?

What do you think?
i actually built it into the script , see the following line

// set overlay after 1.5 seconds
setTimeout('pover();', 1500);
__________________
hatisblack at yahoo.com
SmokeyTheBear is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-14-2010, 08:18 AM   #37
LongBG
Confirmed User
 
LongBG's Avatar
 
Industry Role:
Join Date: Jun 2007
Location: Sesame Street
Posts: 1,101
Quote:
Originally Posted by SmokeyTheBear View Post
i actually built it into the script , see the following line

// set overlay after 1.5 seconds
setTimeout('pover();', 1500);
Oh yes, my bad...

You rock!
__________________
Contact me:
[email protected]
LongBG is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-14-2010, 08:43 AM   #38
IllTestYourGirls
Ah My Balls
 
IllTestYourGirls's Avatar
 
Industry Role:
Join Date: Feb 2007
Location: Under the gold leaf ICQ 388-454-421
Posts: 14,311
Quote:
Originally Posted by Jakez View Post
Tip: if you have any programming knowledge, you can use this for your referring sites traffic and display "visit our friends sites below" links/thumbs for traded traffic, and for your valuable traffic coming from search engines display your "are you looking for [searched term here] porn?" with your links/thumbs going to sponsors.
I would like to know how to do this
__________________
IllTestYourGirls is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-14-2010, 08:53 AM   #39
SmokeyTheBear
►SouthOfHeaven
 
SmokeyTheBear's Avatar
 
Join Date: Jun 2004
Location: PlanetEarth MyBoardRank: GerbilMaster My-Penis-Size: extralarge MyWeapon: Computer
Posts: 28,609
Quote:
Originally Posted by LongBG View Post
Oh yes, my bad...

You rock!
i usually set mine to about 5 seconds. obviously page stats vary according to design but i once built a script to log how long between a user loading the page and them going for the scrollbar and the avg was around 5 seconds.
__________________
hatisblack at yahoo.com
SmokeyTheBear is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-14-2010, 10:59 AM   #40
Bex
Confirmed User
 
Join Date: Feb 2003
Location: Canada
Posts: 2,382
Very cool. You mind if I get a tech to mess with it and let our webmasters use it?
__________________


www.NicheWealth.com
Bex is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-14-2010, 11:35 AM   #41
Fabien
Confirmed User
 
Industry Role:
Join Date: Jul 2003
Posts: 4,787
As i suck a scripting, what is code i need to enter into my page get code.js triggered ?
You know, the
<javascript blhabhla> thingo

Thanks
Fabien is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-14-2010, 12:11 PM   #42
CIVMatt
Amateur Pimpin
 
CIVMatt's Avatar
 
Industry Role:
Join Date: Aug 2004
Location: Orlando, FL
Posts: 13,075
Smokey what do you have to do with Kirzenchat?
__________________
Make easy money with Webcams
CIVMatt is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-14-2010, 12:18 PM   #43
Fabien
Confirmed User
 
Industry Role:
Join Date: Jul 2003
Posts: 4,787
Quote:
Originally Posted by Fabien View Post
As i suck a scripting, what is code i need to enter into my page get code.js triggered ?
You know, the
<javascript blhabhla> thingo

Thanks
As i suck at english too i should add
Fabien is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-14-2010, 12:23 PM   #44
awxm
Confirmed User
 
Industry Role:
Join Date: Aug 2009
Posts: 819
Quote:
Originally Posted by Fabien View Post
As i suck a scripting, what is code i need to enter into my page get code.js triggered ?
You know, the
<javascript blhabhla> thingo

Thanks
Code:
<script type="text/javascript" src="code.js"></script>
__________________
.
awxm is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-14-2010, 12:31 PM   #45
Nicky
Judge Jury and Executioner
 
Nicky's Avatar
 
Industry Role:
Join Date: Mar 2003
Location: Sweden
Posts: 30,069
This will be useful. Thanks
__________________

gfynicky @ gmail.com
Nicky is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-14-2010, 05:32 PM   #46
Fabien
Confirmed User
 
Industry Role:
Join Date: Jul 2003
Posts: 4,787
Weird, i got the ad again when testing my stuff ? Isn't suppose to show only once ?
Fabien is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-14-2010, 05:37 PM   #47
DVTimes
xxx
 
Industry Role:
Join Date: Jun 2003
Location: UK
Posts: 31,544
thats cool
__________________
The Affiliate Program
DVTimes is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-14-2010, 05:41 PM   #48
Fabien
Confirmed User
 
Industry Role:
Join Date: Jul 2003
Posts: 4,787
Weird, if i click on "no thanks" with firefox the ad doesn't disapear. What about you guys ?
Works with Chrome tho
Fabien is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-14-2010, 07:11 PM   #49
HighEnergy
So Fucking Banned
 
Join Date: Apr 2007
Posts: 806
Welcome to 2006
HighEnergy is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-15-2010, 01:55 PM   #50
SmokeyTheBear
►SouthOfHeaven
 
SmokeyTheBear's Avatar
 
Join Date: Jun 2004
Location: PlanetEarth MyBoardRank: GerbilMaster My-Penis-Size: extralarge MyWeapon: Computer
Posts: 28,609
Quote:
Originally Posted by Fabien View Post
Weird, i got the ad again when testing my stuff ? Isn't suppose to show only once ?
if the cookie name is changed it will display twice. i suspect something else is the problem , the cookie is only set if the user clicks the no thanks
__________________
hatisblack at yahoo.com
SmokeyTheBear 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
Thread Tools



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.