Dakusan's Domain Forum

Main Site Discussion => Posts => Topic started by: Dakusan on August 06, 2013, 12:00:33 pm

Title: JavaScript Cookies Functions
Post by: Dakusan on August 06, 2013, 12:00:33 pm
Original post for JavaScript Cookies Functions can be found at https://www.castledragmire.com/Posts/JavaScript_Cookies_Functions.
Originally posted on: 08/06/13

Just throwing these up here for reference. Simple JavaScript scripts to get and set cookies.  Not particularly foolproof, robust, or fully featured.


function SetCookie(Name, Value, SecondsToExpire) { document.cookie=Name+"="+escape(Value)+"; expires="+new Date(new Date().getTime()+SecondsToExpire*1000).toUTCString(); }
function GetCookie(Name)
{
   var Match=document.cookie.match(new RegExp('(?:^|; ?)'+Name+'=(.*?)(?:;|$)'));
   return Match ? unescape(Match[1]) : null;
}