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

  • Home
  • SEARCH
  • 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 8578051
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T20:17:57+00:00 2026-06-11T20:17:57+00:00

I am not able to figure out how to delete a cookie inside a

  • 0

I am not able to figure out how to delete a cookie inside a array?

Basically I have a array where I store all my cookies. Now I am trying to
delete a ‘cookie’ with a click event but not able to figure out why the cookie list
doesn’t get updated?

Perhaps I need to reset the cookie list?

Please advice.

Here is my code for inserting a cookie:

var my_array = [];
$(".addCookie a").click(function(e) {       
  var val = $(this).attr("href");                                         
  if (my_array.indexOf(val) == -1) {   my_array.push(val); }   
$.cookie('Cookies', my_array);
e.preventDefault();
return false;       
 });

and this for deleting a cookie present inside a array

$(".remCookie a").click(function(e) {
    var val = $(this).attr("href");
    var index = my_array.indexOf(val);
    if (index == -1) {
        my_array.splice(index, 1);
    }       
        e.preventDefault();
    return false;
});
  • 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-06-11T20:17:58+00:00Added an answer on June 11, 2026 at 8:17 pm

    There is two problems when you remove a cookie; you splice the array if the index is equal to -1 (i.e. it the value isn’t in the array), and you don’t put the array into the cookie.

    $(".remCookie a").click(function(e) {
      var val = $(this).attr("href");
      var index = my_array.indexOf(val);
      if (index != -1) {
        my_array.splice(index, 1);
        $.cookie('Cookies', my_array);
      }       
      e.preventDefault();
      return false;
    

    });

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

Sidebar

Related Questions

In SQL Server 2005, I'm trying to figure out why I'm not able to
I am not able to figure out why it is not tracing value for
I am not able to figure out how the graphs shown here are constructed?
I am stuck with a simple problem but not able to figure out the
Not able to store all binary data values into sqlite3 table using QT. For
I have encountered this problem a few times, and am not able to figure
I can not figure out where my problem is but I am not able
I have the below Dojo DnD and I can't figure out how to delete
I am not able to understand how to rotate the image. I am trying
I'm currently trying to figure out how to perform manual windows authentication in our

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.