Read cookie by name - Node.js Environment

Node.js examples for Environment:Cookie

Description

Read cookie by name

Demo Code


function readCookie(name) { 
  var nameEQ = name + "="; 
  var ca = document.cookie.split(';'); 
  for (var i = 0; i < ca.length; i++) { 
    var c = ca[i]; 
    while (c.charAt(0) == ' ') c = c.substring(1, c.length); 
    if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length, c.length); 
  } //from ww w.ja va 2  s  .  c o m
  return null; 
}

Related Tutorials