Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

150
Views
Cookies give expected output in Edge, but, doesn't in Firefox

I am using w3schools cookies functions in my project.

When I try this code in Firefox, document.cookie gives me ''

When I try this code in Edge, document.cookie gives me 'streak=0'

My question is:

Why does Firefox give me a empty string?

If this is specific to Firefox how can I workaround?

My workaround would be using localStorage.

Note: Snippet doesn't work because on stackoverflow because "The operation is insecure"

function setCookie(cname,cvalue,exdays) {
  const d = new Date();
  d.setTime(d.getTime() + (exdays*24*60*60*1000));
  let expires = "expires=" + d.toUTCString();
  document.cookie = cname + "=" + cvalue + ";" + expires + ";path=/";
}

function getCookie(cname) {
  let name = cname + "=";
  let decodedCookie = decodeURIComponent(document.cookie);
  let ca = decodedCookie.split(';');
  for(let i = 0; i < ca.length; i++) {
    let c = ca[i];
    while (c.charAt(0) == ' ') {
      c = c.substring(1);
    }
    if (c.indexOf(name) == 0) {
      return c.substring(name.length, c.length);
    }
  }
  return "";
}

function checkCookie() {
  let user = getCookie("streak");
  if (user != "") {
    //document.getElementById('streak').innerHTML = `Your streak: ${user}๐Ÿ”ฅ`;
    console.log(user);
  } else {
    setCookie('streak', '0', 1)
    //document.getElementById('streak').innerHTML = `Your streak: 0๐Ÿ”ฅ`;
    console.log(user);
  }
}

checkCookie('streak')

about 4 years ago ยท Juan Pablo Isaza
1 answers
Answer question

0

The problem was that I had Strict protection in my Firefox which blocked the cookies.

I turned it off and it worked.

about 4 years ago ยท Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
ยฉ 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!