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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T16:01:51+00:00 2026-05-23T16:01:51+00:00

Independent from the HTML id attribute, is there a good way to define a

  • 0

Independent from the HTML id attribute, is there a good way to define a unique element identifier in JavaScript to use with HTML5 local storage?

localStorage.setItem('uniqueid', value);

Could do this:

var uid = ancestor.index(element); // uid = 0

localStorage.setItem(namespace + uid, value);

The problem is that if the element order changes, the data is not associated with the right element:

var uid = ancestor.index(element); // another element is prepended, so uid = 1

localStorage.getItem(namespace + uid);

EDIT – real example

HTML code:

<ul>
<li aria-hidden="true">foo</li>
<li>bar</li>
</ul>

jQuery code:

var ul = $('ul');

ul.find('li').each(function() {

    var element = $(this),
        uid = ul.index(element),
        data = JSON.parse(this.storage.getItem(uid));

    // load
    console.log(data.hidden);

    // save
    this.$window.bind('unload', function() {

        localStorage.setItem(uid, JSON.stringify({
            hidden: typeof element.attr('aria-hidden') === 'string',
        }));
    });
});

Now I am using the index of each list item to create a unique identifier. I could set a data-uid with HTML like so:

<li data-uid="foo">foo</li>

Is there a way to set the unique identifier dynamically?

  • 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-23T16:01:51+00:00Added an answer on May 23, 2026 at 4:01 pm

    If the data being stored depends on the specific order of elements, that seems to suggest it will not be helpful to persist this data beyond the current page. You may wish to look at data-* attributes such as jQuery implements in $.data.

    This will allow you to store arbitrary data associated with any element.

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

Sidebar

Related Questions

By definition algorithms are independent from the medium they run on. E.g. I use
Is there a platform-independent way of writing the EOF symbol to a string in
Is there a way to completely ignore a CSS file from a header that
Can we include an HTML file / snippet from another HTML file? My use
How can I write php codes independent from XHTML codes?
Does anyone know how I can, in platform-independent C++ code prevent an object from
Is there a platform-independent method to embed file data into a c++ program? For
If we've learned anything from HTML/CSS it's that, declarative languages (like XML) do a
I am struggling with Javascript. Most of my problems do not arise from lack
I would like to configure my environment to serve css and javascript files from

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.