Click to site, open site
|
|
damager | Дата: 13 Декабря 2010, 23:16 | Сообщение # 1 | ● ● ● ● ● Статус: Offline | Hi all. I want ask helper one question. I search script! When guest click to my site, no matter where in the - open new window with other site! Who can help me with this script? | | |
|
UnderShot | Дата: 14 Декабря 2010, 12:55 | Сообщение # 2 | ● ● ● ● ● 393 сообщения Статус: Offline | Code document.onclick=function(){ var url="http://helper.ucoz.ru"; // new link window.open(url) } | | |
|
damager | Дата: 14 Декабря 2010, 15:59 | Сообщение # 3 | ● ● ● ● ● Статус: Offline | Its work but. Every time, when i click to page, open helper site, i need one time per day or to the next site refresh! | | |
|
exec | Дата: 14 Декабря 2010, 16:06 | Сообщение # 4 | ● ● ● ● ● 199 сообщений Статус: Offline | to the next site refresh! Code var clicked = false; document.onclick = function () { if (!clicked) window.open("URL"); clicked = true; }; | | |
|
damager | Дата: 14 Декабря 2010, 16:36 | Сообщение # 5 | ● ● ● ● ● Статус: Offline | Much better exec! Question, to get script, who open site one per day, need php hosting & datubase? Or it is a Js? I cant find! | | |
|
UnderShot | Дата: 14 Декабря 2010, 16:56 | Сообщение # 6 | ● ● ● ● ● 393 сообщения Статус: Offline | need php hosting & datubase Yes, use php & javascript. | | |
|
MegaFill | Дата: 14 Декабря 2010, 17:43 | Сообщение # 7 | ● ● ● ● ● 1588 сообщений Статус: Offline | Yes, use php & javascript. omg. Question, to get script, who open site one per day, need php hosting & datubase? Or it is a Js? I cant find! Use js cookies. | | |
|
damager | Дата: 14 Декабря 2010, 23:34 | Сообщение # 8 | ● ● ● ● ● Статус: Offline | MegaFill, maybe you can help me with this code. My html knowledge level is to low, to write this script! | | |
|
exec | Дата: 15 Декабря 2010, 04:44 | Сообщение # 9 | ● ● ● ● ● 199 сообщений Статус: Offline | Code <script type='text/javascript'> function getCookie(a){var b=document.cookie.match(new RegExp("(?:^|; )"+a.replace(/([\.$?*|{}\(\)\[\]\\\/\+^])/g,"\\$1")+"=([^;]*)"));return b?decodeURIComponent(b[1]):undefined}function setCookie(b,f,c){c=c||{};var i=c.expires;if(typeof i=="number"&&i){var h=new Date();h.setTime(h.getTime()+i*1000);i=c.expires=h}if(i&&i.toUTCString){c.expires=i.toUTCString()}f=encodeURIComponent(f);var a=b+"="+f;for(var e in c){a+="; "+e;var g=c[e];if(g!==true){a+="="+g}}document.cookie=a}
if (!getCookie("clicked")) document.onclick = function () { window.open("URL"); setCookie("clicked", "1", {expires: 86400}); }; </script> | | |
|
UnderShot | Дата: 15 Декабря 2010, 05:10 | Сообщение # 10 | ● ● ● ● ● 393 сообщения Статус: Offline | | | |
|
damager | Дата: 15 Декабря 2010, 15:29 | Сообщение # 11 | ● ● ● ● ● Статус: Offline | exec, script not work! ;( UnderShot, whats so funny? | | |
|
exec | Дата: 15 Декабря 2010, 15:54 | Сообщение # 12 | ● ● ● ● ● 199 сообщений Статус: Offline | damager, I just do not understand you correctly. About script: Yes, use php & javascript. P.S. простите мой французский | | |
|
damager | Дата: 15 Декабря 2010, 23:37 | Сообщение # 13 | ● ● ● ● ● Статус: Offline | exec НЕРАБОТАЕТ!Добавлено (15 Декабрь 2010, 23:36) ---------------------------------------------
Code function PopShow3() { CookieTest=navigator.cookieEnabled; if(CookieTest) { ClickUndercookie = GetCookie('clickunder'); if (ClickUndercookie == null) { var ExpDate = new Date (); ExpDate.setTime(ExpDate.getTime() + (24 * 60 * 60 * 1000)); SetCookie('clickunder','1',ExpDate, "/"); window.open("javascript:location.href='URl';","PopWin3","width=1024,height=768,resizable=1,toolbar=1,location=1,menubar=1,status=1,scrollbars=1'"); window.focus(); } } } function GetCookie (name) { var arg = name + "="; var alen = arg.length; var clen = document.cookie.length; var i = 0; while (i < clen) { var j = i + alen; if (document.cookie.substring(i, j) == arg) return getCookieVal (j); i = document.cookie.indexOf(" ", i) + 1; if (i == 0) break; } return null; } function SetCookie (name, value) { var argv = SetCookie.arguments; var argc = SetCookie.arguments.length; var expires = (argc > 2) ? argv[2] : null; var path = (argc > 3) ? argv[3] : null; var domain = (argc > 4) ? argv[4] : null; var secure = (argc > 5) ? argv[5] : false; document.cookie = name + "=" + escape (value) + ((expires == null) ? "" : ("; expires=" + expires.toGMTString())) + ((path == null) ? "" : ("; path=" + path)) + ((domain == null) ? "" : ("; domain=" + domain)) + ((secure == true) ? "; secure" : ""); } document.onmouseup=PopShow3; Добавлено (15 Декабрь 2010, 23:37) --------------------------------------------- Close this topic please! | | |
|