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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T13:58:45+00:00 2026-05-30T13:58:45+00:00

I have two divs with different ids but with the same classname. Example: Window1

  • 0

I have two divs with different ids but with the same classname. Example: Window1 & Window2…

<div id="Window1" class="name">
   <span id="Admin"></span>
</div>

<div id="Window2" class="name">
   <span id="Admin"></span>
</div>

I want to get the element id of “name” when I click on id “Admin”. Obviously the var solution is wrong below but want to set up something close to this…

var Window_id = $(".name").attr("id");

I hope this explains what I am trying to do. Thanks in advance.

  • 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-30T13:58:46+00:00Added an answer on May 30, 2026 at 1:58 pm

    First off, you can’t have two objects with the same ID. So you can’t have two objects with id="Admin". You will have to give each one a different ID or use a common class name (or both). So you could change it to this:

    <div id="Window1" class="name">
       <span id="Admin1" class="admin"></span>
    </div>
    
    <div id="Window2" class="name">
       <span id="Admin2" class="admin"></span>
    </div>
    

    And, then use this jQuery to handle the click and get the id of the parent of the clicked object:

    $(".admin").click(function() {
        var parentId = $(this).parent().attr("id");
    });
    

    or, a little more efficiently using a little less jQuery:

    $(".admin").click(function() {
        var parentId = this.parentNode.id
    });
    

    My favorite option would actually be this because it’s a little more robust against some HTML changes (like if a new container div was introduced around the span):

    $(".admin").click(function() {
        var parentId = $(this).closest(".name").attr("id");
    });
    

    .parent() or .parentNode used in the first two options go up exactly one level in the DOM hieararchy.

    .closest(".name") used in the third option goes up the parent hierarchy as far as needed until it finds a parent that matches the passed in selector. It’s a little more powerful and more likely to make sure you get the parent you want, even if the HTML changes a little bit. Not always required, but worth knowing about.

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

Sidebar

Related Questions

i have two divs with the same ids but one has display=none and the
I have a page with the following two divs: <div id=searchResults> </div> <div class=postSearchOptions
I have floated two divs left but the div on the right has a
I have two div(s) with different IDs. First div has a jquery slider and
I have two pages that use the same css but seem to look different.
I have two divs. I would like to move/populate the text from div id
Suppose I have an div. Inside this div, I have two divs floating left,
I have a div with two nested divs inside, the (float:left) one is the
I have a container div that holds two internal divs; both should take 100%
I have two divs for different sections of my webpage, a working and a

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.