Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6841291
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T23:56:54+00:00 2026-05-26T23:56:54+00:00

I have a problem with javascript cookies that I have been struggling with for

  • 0

I have a problem with javascript cookies that I have been struggling with for days.
I have this function(almost the same from w3):

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.indexOf(c_name)==0)
    {
     ar[i]=y;
     arr[i]=x;
    }
  }
}

Lets say that I have stored two cookies with the following names:tablet1 and taskt1. When I call getCookie('table'), ar.length is 1. After that I run getCookie('task') and ar.length is 2. This causes me a lot of problems. If I put ar=0; at the start of the function nothing works, it’s like the function just stores values every time I call it without erasing the old ones.

============================

var arrCookies = {};
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.indexOf(c_name)==0)
    {
        arrCookies[c_name] = y;

    }
  }
}

when i do that the arrCookies[c_name] it does not store any values–>arrCookies[c_name].lenght is zero

=================================================
i also did

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.indexOf(c_name)==0)
    {
        if(c_name=='table'){
            xxx[i]=x;
            xx[i]=y;
        }
        else if(c_name=='task'){
            arr[i]=x;
            ar[i]=y;
        }
    }
  }
}

and i get the same results with my first script

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T23:56:54+00:00Added an answer on May 26, 2026 at 11:56 pm

    instead of using ar[i] in the loop, use ar[j] like this:

    j=0;
    for(i=0;...) {
       if(...) {
          ar[j]=...;
          j = j + 1;
       }
    }
    

    do you see the mistake in your code?

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a problem with a javascript set of functions that I made. This
I have problem in some JavaScript that I am writing where the Switch statement
So I have a rather basic javascript problem which I have been slamming my
I have this html code <html> <head> <title>JQuery Problem 2</title> <script type=text/javascript src=jquery-1.4.min.js></script> <script
I have problems with the following bit of javascript/jquery code: this.droppable = function(){ $('.imageWindow
Brainstorming needed . I have a problem with Javascript libraries (jQuery, ExtJS etc.) that
I have a Javascript error that have been reported to me and unfortunately I've
I have this assignment to read, write, enable cookies so that the username will
I have an index page that detects if users have JavaScript and cookies enabled
I have a problem with a javascript error: $(#slider) is undefined How can i

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.