Skip to content

Instantly share code, notes, and snippets.

@ankitnetwork18
Created January 11, 2013 07:14
Show Gist options
  • Save ankitnetwork18/4508643 to your computer and use it in GitHub Desktop.
Save ankitnetwork18/4508643 to your computer and use it in GitHub Desktop.
Cookies: function to getCookie
function getCookie(c_name) {
var i,x,y,ARRcookies=document.cookie.split(";");
for (i=0;i<ARRcookies.length;i++)
{
x=ARRcookies[i].substr(0,ARRcookies[i].indexOf("="));
y=ARRcookies[i].substr(ARRcookies[i].indexOf("=")+1);
x=x.replace(/^\s+|\s+$/g,"");
if (x==c_name)
{
return unescape(y);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment