Hiçbir yerde bulamayacağınız html kodları
   
 
  Sitene Kim Girdi Kim Çıktı
<script><br />
<br />
<!--<br />
<br />
// Copyright (c) 1996-1997 Tomer Shiran. All rights reserved.<br />
<br />
// Permission given to use the script provided that this notice remains as is.<br />
<br />
// Additional scripts can be found at http://www.javadepo.com<br />
<br />
<br />
<br />
// Boolean variable specified if alert should be displayed if cookie exceeds 4KB<br />
<br />
var caution = false<br />
<br />
<br />
<br />
// name - name of the cookie<br />
<br />
// value - value of the cookie<br />
// [expires] - expiration date of the cookie (defaults to end of current session)<br />
<br />
// [path] - path for which the cookie is valid (defaults to path of calling document)<br />
<br />
// [domain] - domain for which the cookie is valid (defaults to domain of calling document)<br />
<br />
// [secure] - Boolean value indicating if the cookie transmission requires a secure transmission<br />
<br />
// * an argument defaults when it is assigned null as a placeholder<br />
<br />
// * a null placeholder is not required for trailing omitted arguments<br />
<br />
function setCookie(name, value, expires, path, domain, secure) {<br />
<br />
var curCookie = name + "=" + escape(value) +<br />
<br />
((expires) ? "; expires=" + expires.toGMTString() : "") +<br />
<br />
((path) ? "; path=" + path : "") +<br />
<br />
((domain) ? "; domain=" + domain : "") +<br />
<br />
((secure) ? "; secure" : "")<br />
<br />
if (!caution || (name + "=" + escape(value)).length <= 4000)<br />
<br />
document.cookie = curCookie<br />
<br />
else<br />
<br />
if (confirm("Cookie exceeds 4KB and will be cut!"))<br />
<br />
document.cookie = curCookie<br />
<br />
}<br />
<br />
<br />
<br />
// name - name of the desired cookie<br />
<br />
// * return string containing value of specified cookie or null if cookie does not exist<br />
<br />
function getCookie(name) {<br />
<br />
var prefix = name + "="<br />
<br />
var cookieStartIndex = document.cookie.indexOf(prefix)<br />
<br />
if (cookieStartIndex == -1)<br />
<br />
return null<br />
<br />
var cookieEndIndex = document.cookie.indexOf(";", cookieStartIndex + prefix.length)<br />
<br />
if (cookieEndIndex == -1)<br />
<br />
cookieEndIndex = document.cookie.length<br />
<br />
return unescape(document.cookie.substring(cookieStartIndex + prefix.length, cookieEndIndex))<br />
<br />
}<br />
<br />
<br />
<br />
// name - name of the cookie<br />
<br />
// [path] - path of the cookie (must be same as path used to create cookie)<br />
<br />
// [domain] - domain of the cookie (must be same as domain used to create cookie)<br />
<br />
// * path and domain default if assigned null or omitted if no explicit argument proceeds<br />
<br />
function deleteCookie(name, path, domain) {<br />
<br />
if (getCookie(name)) {<br />
<br />
document.cookie = name + "=" + <br />
<br />
((path) ? "; path=" + path : "") +<br />
<br />
((domain) ? "; domain=" + domain : "") +<br />
<br />
"; expires=Thu, 01-Jan-70 00:00:01 GMT"<br />
<br />
}<br />
<br />
}<br />
<br />
<br />
<br />
// date - any instance of the Date object<br />
<br />
// * you should hand all instances of the Date object to this function for "repairs"<br />
<br />
// * this function is taken from Chapter 14, "Time and Date in JavaScript", in "Learn Advanced JavaScript Programming"<br />
<br />
function fixDate(date) {<br />
<br />
var base = new Date(0)<br />
<br />
var skew = base.getTime()<br />
<br />
if (skew > 0)<br />
<br />
date.setTime(date.getTime() - skew)<br />
<br />
}<br />
<br />
<br />
<br />
var now = new Date()<br />
<br />
fixDate(now)<br />
<br />
now.setTime(now.getTime() + 31 * 24 * 60 * 60 * 1000)<br />
<br />
var name = getCookie("name")<br />
<br />
if (!name)<br />
<br />
name = prompt("Lütfen isminizi yazın:", "Adınız(site sizi bu isimle hatırlıycak.")<br />
<br />
setCookie("name", name, now)<br />
<br />
document.write(" " + name + "")<br />
<br />
//--><br />
<br />
</script><br />
<br />
<br />
<br />
SAAT
 
 
 






kod indir
 
 
Bugün 4 ziyaretçi (9 klik) kişi burdaydı!
Bizi seçtiğiniz için Teşekkürler...... Bu web sitesi ücretsiz olarak Bedava-Sitem.com ile oluşturulmuştur. Siz de kendi web sitenizi kurmak ister misiniz?
Ücretsiz kaydol