Show pageOld revisionsBacklinksBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. # IT:AD:JQuery:Cookies # <callout type="Navigation" class="small"> * [[../|(UP)]] {{indexmenu>.#2|nsort tsort}} --- </callout> ## Examples ## Plain old JS: function setCookie(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 getCookie(name) { var nameEQ = 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(nameEQ) == 0) return c.substring(nameEQ.length,c.length); } return null; } function deleteCookie(name) { setCookie(name,"",-1); } ## Considerations ## * Cookies impact performance: * Cookies are sent with every request. * So if the image has 50 images, it gets sent 50 times... * Hence why Google Page Speed or Yahoo's YSlow recommend sending static content from different, cookie-free, domains. * Consider using the Cookie path feature if you can't reduce the size. /home/skysigal/public_html/data/pages/it/ad/jscript/cookies.txt Last modified: 2023/11/04 03:26by 127.0.0.1