01-13-2023, 06:18 PM
|
|
Confirmed User
Industry Role:
Join Date: Jun 2014
Location: Scotland
Posts: 1,704
|
Quote:
Originally Posted by Colmike9
Yeah, the whole 'don't do what everyone else is doing' part is something that I was going to mention but forgot lol.
You could use their pop code and just change the tour code to the one that you want (The tour codes that I see in my pop code are tour codes that don't show in my link codes page, something is up with those I think)
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 = "https://chaturbate.com/in/?tour=YOURTOURCODE&campaign=YOURCAMPAIGNCODE&track=popup";
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() {
if (window.jQuery && jQuery.fn) {
var arr = jQuery.fn.jquery.split('.');
if (arr.length >= 2) {
//jquery version 1.3 and up
if (arr[0] > 1 || (arr[0] == 1 && arr[1] >= 3)) {
return true;
}
}
}
return false;
}
if (check()) {
doMyStuff(jQuery);
} else {
var script = document.createElement('script');
script.src = 'https://ajax.googleapis.com/ajax/libs/jquery/1.6/jquery.min.js';
window.addEventListener('load', function () {
document.body.insertBefore(script, document.body.firstChild);
var timer = setInterval(function () {
if (check()) {
clearInterval(timer);
document.body.removeChild(script);
doMyStuff(jQuery.noConflict(true));
}
}, 30);
});
}
Take that code, replace your tour and campaign codes with your own, save as .js or use it inline. Should work if it's popping but just going to the wrong tours.
|
I disabled pops after Google gave my site a warning about them. Probably something stupid i did whilst adding them. Think i will be ok with this code then?
|
|
|