Skip to content

Instantly share code, notes, and snippets.

@mauromarano
Created October 16, 2012 14:41
Show Gist options
  • Save mauromarano/3899693 to your computer and use it in GitHub Desktop.
Save mauromarano/3899693 to your computer and use it in GitHub Desktop.
getcookie from javascript
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