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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T22:42:01+00:00 2026-05-26T22:42:01+00:00

I am trying to obtain the id of the container whose href element was

  • 0

I am trying to obtain the id of the container whose href element was clicked, using jQuery. I know this involves use of the parent() method, but I’m not sure how to put it all together.

Here is a snippet of the kind of HTML doc I will be processing:

<html>
    <head>
    <script type="text/javascript" src="jquery.js"></script>
    </head>
    <body>
        <div id="cntnr_1" class="container">
             <a href="/foo1">foo1</a>
             <a href="/foo2">foo2</a>
             <a href="/foo3">foo3</a>
        </div>
        <div id="cntnr_2" class="container">
             <a href="/foobar1">foobar1</a>
             <a href="/foobar2">foobar2</a>
             <a href="/foobar3">foobar3</a>
        </div>
        <script type="text/javascript">
        $().ready(function(){
            //display the url of the clicked on link
            //display the id of the container whose href was clicked on     
        });
        </script>
    </body>
</html>

The desired behavior (When a link [href] in a “container” is clicked) is as follows:

  1. Display the link of the url clicked on (so I can submit an AJAX POST to the url)
  2. Display the id of the container (so I can push the received data back to that id)

Can anyone help with how to obtain the parent container id and the url that was clicked?

[[Edit]]

I have posted the actual HTML code I am using here: http://jsfiddle.net/fpPRL/

  • 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-26T22:42:02+00:00Added an answer on May 26, 2026 at 10:42 pm
    $('.container a').click(function(e){
        e.preventDefault();
        var url = $(this).attr('href');
        var container_id = $(this).parent().attr('id');
        alert('the url is "'+ url +'" from the container #' + id);
    });
    

    UPDATE:
    Since you tried it on a different html markup (and didn’t work), here’s a more universal solution (see it in action here : http://jsfiddle.net/fpPRL/1/):

    $('.container a').click(function(e){
        e.preventDefault();
        var url = $(this).attr('href');
        var container_id = $(this).parents('.page_container:first').attr('id');
        alert('the url is "'+ url +'" from the container #' + id);
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to obtain the value part of this syntax: [name:value] I got
I'm using Hibernate and JPA for a small project. Somehow when trying to obtain
I'm trying to figure out how could I parse this string using sstream and
Sorry for my English. I can't obtain sender name using custom extractor. I'm trying
I'm trying to create an xml file.when I create the file I obtain this
I'm trying to obtain the machine precision on gmp variables. To that end, I
I'm trying to obtain a smooth lighting effect on a solid with openGLES 2.0.
I am trying to obtain class information on a field inside a model, when
I am trying to obtain the text content of a Internet Explorer web browser
OK, I have been trying to obtain the id of a particular link, but

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.