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 7718595
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T03:12:13+00:00 2026-06-01T03:12:13+00:00

Here in this code: $(‘#doneItem’).click(function(){ $(this).each(function(index){ var item = ‘personal’ + index; alert(item); localStorage.removeItem(‘personal’

  • 0

Here in this code:

$('#doneItem').click(function(){
        $(this).each(function(index){
            var item = 'personal' + index;
            alert(item);
            localStorage.removeItem('personal' + index);
            window.location.reload(true);
        });
});

#doneItem is a button, and i want to remove the ‘personal0’ for ex. from localStorage and…
Uncaght TypeError: Cannot call method ‘removeItem’ of undefined. Any ideas??

  • 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-01T03:12:15+00:00Added an answer on June 1, 2026 at 3:12 am

    Could you check if the item is in the localStorage before trying to remove it?

    if (item in localStorage) localStorage.removeItem(item);  
    

    I assume you’ve checked that the browser uses localStorage?

    EDIT
    You can try to use a dynamic id. This will match all a elements that start with doneItem and then get the number at the end to the index variable.

        $("a[id^=doneItem]").click(function(){
                var index = $(this).attr("id").replace("doneItem", "");                
                var item = 'personal' + index;
                localStorage.removeItem(item);
                window.location.reload(true);
        });  
    

    You would also need to change this line and insert an i there:

    document.write("<a data-role=\"button\" id=\"doneItem" + i + "\" data-transition=\"none\" href=\"#showPersonal\" data-icon=\"check\" data-iconpos=\"left\">Done</a>");  
    

    This will only work if you comment out the Modernizr code too. You’re replacing the localstorage variable here, and I don’t know why you do that.

        /*   
        if (Modernizr.localstorage) {
              var localStorage = window.storage;
        } else {
              alert('Your browser does not support local storage!');
        }
        */  
    

    These problem might only be with jsfiddle so I had to remove some more code, but here’s a somewhat working example: http://jsfiddle.net/zr4tg/53/

    It might not look like you want but it should be working. Let me know =)

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

Sidebar

Related Questions

I have this code here: var infiltrationResult; while(thisOption) { var trNode = document.createElement('tr'); var
I have this code here, {foreach from=$cart.cartItems item=item name=cart} <div id=cart2Produkt> <p>{if $item.Product.ID} <a
How do I get the IE gradient function here in this code sample to
Why does this code: function answer(x) { function closure() { var x = x
I've been having some problem with this code $(#click).bind('mousedown mouseup mouseover', function(e) { if(e.type
I have this code: _trackit: function(){ for(var key in this.items.sublinks){ switch(key){ case 'shoes': for(var
I got this code: (function($){ var ListView = Backbone.View.extend({ el: $('body'), // el attaches
There are a lot of posts on here about this, I'm using this code
I have this code here, which is intended to allow any type of arguments:
Here I found this code: import java.awt.*; import javax.swing.*; public class FunWithPanels extends JFrame

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.