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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T18:57:17+00:00 2026-05-27T18:57:17+00:00

I need to generate unique css selector for elements. Particularly, I have onclick event

  • 0

I need to generate unique css selector for elements.
Particularly, I have onclick event handler that should remember what target element
was clicked and send this info to my server. Is there a way to do it without doing DOM modifications?

P.S. my javascript code supposed to be run on different
3-rd party websites so I can’t make any assumptions about html.

  • 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-27T18:57:18+00:00Added an answer on May 27, 2026 at 6:57 pm

    let say you have a list of links for the sake of simplicity: you can simply pass the index of the triggering element in the collection of all elements

    <a href="#">...</a>
    <a href="#">...</a>    
    <a href="#">...</a>
    

    the js (jQuery 1.7+, I used .on()otherwise use bind()) function can be

    var triggers = $('a');
    triggers.on('click', function(e) {
       e.preventDefault();
       var index = triggers.index($(this));
       /* ajax call passing index value */
    });
    

    so that if you click on third element index value passed will be 2. (0-based index);
    of course this is valid as long as the code (the DOM) doesn’t change. Later you can use that index to create a css rule to that element e.g. using :nth-child

    Otherwise if each one of your elements have a different attribute (like an id) you can pass that attribute

    example on JsFiddle : http://jsfiddle.net/t7J8T/

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

Sidebar

Related Questions

I need to generate thumbnails from a set of jpg's that need to have
I need to generate a unique string that is 30 characters in length. At
I need to generate a unique integer id for a string. Reason: I have
I have a project in which I need to generate a unique 5 digit
I need to generate 10,000 unique identifiers in Java. The identifiers should be a
I need to generate something that can be used as a unique handle for
I'm working on an application where I need to generate unique, non-sequential IDs. One
Hi i need to generate 9 digit unique account numbers. Here is my pseudocode:
I need to generate some passwords, I want to avoid characters that can be
I have a unique combination of platforms in my solution that has stumped me.

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.