Search
 
SCRIPT & CODE EXAMPLE
 

JAVASCRIPT

js set cookie

function setCookie(name,value,days) {
    var expires = "";
    if (days) {
        var date = new Date();
        date.setTime(date.getTime() + (days*24*60*60*1000));
        expires = "; expires=" + date.toUTCString();
    }
    document.cookie = name + "=" + (value || "")  + expires + "; path=/";
}
function getCookie(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);
    }
    return null;
}

setCookie("user_email","bobthegreat@gmail.com",30); //set "user_email" cookie, expires in 30 days
var userEmail=getCookie("user_email");//"bobthegreat@gmail.com"
Comment

how to save cookie in JavaScript

<script src="https://cdnjs.cloudflare.com/ajax/libs/js-cookie/3.0.1/js.cookie.min.js"></script>
Cookies.set('cookie_name', 'cookie_value', { expires: 365 });
Cookies.get('cookie_name'); // => 'value'
Cookies.remove('cookie_name');
Comment

js write and get cookie

// how to add to cookie
document.cookie = "yourKey=your value"
Comment

how to create a cookie in javascript

document.cookie = "firstName=Anthony"; 
Comment

javasciprt set cookie

function setCookie(name,value,days) {
    var expires = "";
    if (days) {
        var date = new Date();
        date.setTime(date.getTime() + (days*24*60*60*1000));
        expires = "; expires=" + date.toUTCString();
    }
    document.cookie = name + "=" + (value || "")  + expires + "; path=/";
}
function getCookie(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);
    }
    return null;
}
function eraseCookie(name) {   
    document.cookie = name +'=; Path=/; Expires=Thu, 01 Jan 1970 00:00:01 GMT;';
}
Comment

javascript set cookie

const setCookie = (options) => {
  const {
    name,
    value = '',
    path = '/',
    duration = 3600,
  } = options;
  
  const durationMs = duration * 1000;
  const expires =
    new Date(Date.now() + durationMs);

  document.cookie = 
    `${name}=${escape(value)}; expires=${expires.toUTCString()}; path=${path}`;
}

const getCookie = (name, cast = String) => {
  if (document.cookie.length == 0)
    return;

  const match = document
    .cookie
    .match(`${name}=(?<value>[w]*);?`);

  if (!match)
    return;

  const value =
    match?.groups?.value ?? '';

  return cast(unescape(value));
}

const cookieExists = (name) => {
  return getCookie(name) !== undefined;
}

const deleteCookie = (name) => {
  setCookie({
    name: name,
    value: undefined,
    duration: -1,
  });
}


// Example string
setCookie({ 
  name: 'username',
  value: 'dude',
});

const username = 
  getCookie('username');


// Example number
setCookie({
  name: 'count',
  value: 100,
  duration: 300, // 300s, 5 minutes
});

const count =
  getCookie('count', parseInt);

deleteCookie('count');
Comment

PREVIOUS NEXT
Code Example
Javascript :: javascript cookies 
Javascript :: create link and click javascript 
Javascript :: jquery get date from datepicker 
Javascript :: regExp for finding a first letter and last letter in a string 
Javascript :: jetbrains vscode 
Javascript :: how to use flatlist keyextractor 
Javascript :: appTsConfig.compilerOptions[option] = value; 
Javascript :: Return the Next Number from the Integer Passed javascript 
Javascript :: check if intersectionobserver supported js 
Javascript :: javascript get time ago with moment 
Javascript :: scroll to bottom of an element javascript 
Javascript :: javascript parse url parameters 
Javascript :: javascript leap year 
Javascript :: javascript run function once 
Javascript :: focus input field in modal 
Javascript :: cannot use import statement outside a module from the console.log 
Javascript :: delete attribute javascript 
Javascript :: framer motion styled components 
Javascript :: jquery if attribute 
Javascript :: jquery add html to end of div 
Javascript :: javascript check if string ends with 
Javascript :: Another debugger is already connected Rn @ bundle.js:10 
Javascript :: create react app in existing folder 
Javascript :: go to nextelementsibling javascript 
Javascript :: Add event listener to multiple buttons with the same class 
Javascript :: vanilla tilt.js 
Javascript :: cordova capacitor document viewer fail 
Javascript :: documentready 
Javascript :: jquery ajax delete 
Javascript :: change browser image react 
ADD CONTENT
Topic
Content
Source link
Name
1+7 =