Skip to content

Instantly share code, notes, and snippets.

@ReeMii
Created November 5, 2013 17:50
Show Gist options
  • Select an option

  • Save ReeMii/7323149 to your computer and use it in GitHub Desktop.

Select an option

Save ReeMii/7323149 to your computer and use it in GitHub Desktop.
get cookie
function getCookie(c_name)
{
var c_value = document.cookie;
var c_start = c_value.indexOf(" " + c_name + "=");
if (c_start == -1){
c_start = c_value.indexOf(c_name + "=");
}
if (c_start == -1){
c_value = null;
}else{
c_start = c_value.indexOf("=", c_start) + 1;
var c_end = c_value.indexOf(";", c_start);
if (c_end == -1){
c_end = c_value.length;
}
c_value = unescape(c_value.substring(c_start,c_end));
}
return c_value;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment