DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Place Timezone Information Into A Cookie
Set a cookie with the users timezone
//By default, getTimezoneOffset returns the time zone offset in minutes
setCookie("timezone", new Date().getTimezoneOffset()/60);
function setCookie(name, value, expires, path, domain, secure)
{
document.cookie= name + "=" + escape(value) +
((expires) ? "; expires=" + expires.toGMTString() : "") +
((path) ? "; path=" + path : "") +
((domain) ? "; domain=" + domain : "") +
((secure) ? "; secure" : "");
}





