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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T17:03:17+00:00 2026-05-26T17:03:17+00:00

I have a small offline app which you can create boxes dynamically and the

  • 0

I have a small offline app which you can create boxes dynamically and the boxes are stored in localstorage. The boxes are <li>‘s.

The HTML Looks like this:

<ul id="bxs" class="tabs"> 

            <li id="item-1">1</li> 
            <li id="item-2">2</li> 
            <li id="item-3">3</li> 
            <li id="item-4">4</li> 
            // etc
</ul>

The <li>‘s are created like this:

$("#NewItem").click(function(e) {
         e.preventDefault();
        var itemCount = ($("[id^='item-']").length + 1);
        var element = $("<li id='item-" + itemCount + "'>" + itemCount + "</li>");
        $("#bxs").append(element);
    });

Now, everytime you create a box, it stores a key in localstorage with its id. So with 2 boxes the localstorage looks like this:

enter image description here

The value ‘icon’ is its background-image of each box.

My question is: on refresh or open, what is the best way to check if id exists (such as ‘bm-item-1’, ‘bm-item-2’) and append the <li>‘s/boxes.

Shall I create a new key of which will store how many boxes exist? And how can I parse them once you visit the site?

  • 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-26T17:03:17+00:00Added an answer on May 26, 2026 at 5:03 pm

    i would use another way of storing you objects.

    var result = [
        {id: 1, icon: "a"},
        {id: 2, icon: "a"}
    ];
    
    for(var i=0;i<result.length;i++) {
        var item = result[i];
        // item.id
        // item.icon
    }
    

    of course you need to change the way you store you’re data at this point. Append a new object into the result array and re-save it. Anway I think you know how to manage that 🙂

    UPDATE

    I’ve created a basic example for you http://jsfiddle.net/manuel/29gtu/

    Note that you need to include JSON2 for IE support of the JSON object

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

Sidebar

Related Questions

I have small design question about html.DropDownListFor() How can I change width of html.DropDownListFor()
I'm developing an app which will have a central database users can add entries
I have small app in that I manage sales territories. One territory can have
I have small page which has label, DropDownList and a submit button. <div> <asp:label
I have small test app: Socket socket = new Socket(jeck.ru, 80); PrintWriter pw =
I have small web app that generate PDF files as a report. I'm trying
I have a small JS function that does Ajax for me and another like
I have small TcpClient app to connect to a server using SSL (SSlStream class)
I have small question about pdp-11(simulator), I have this command (it begins from the
I have small function which will recolor pixels in a Bitmap from a given

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.