Tag: cookies

  • JavaScript: Cookie functions.

    Tuck this in your belt. Not the most elegant group of functions, but we’ll work on that as we go. function setCookie(name, value, expires, path, domain, secure) { var curCookie = name + “=” + escape(value) + ((expires) ? “; expires=” + expires.toGMTString() : “”) + ((path) ? “; path=” + path : “”) +…