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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T16:10:00+00:00 2026-05-26T16:10:00+00:00

I have a problem with the jQuery click event when an element is inside

  • 0

I have a problem with the jQuery click event when an element is inside another element. The code I am using is similar to the following:

<div class="a" id="a">
  <a class="b" id="b"></a>
</div>

$(".a,.b").click(function() {
  var current_id = $(this).attr("id"); 
  alert(current_id);
  ...do something...
});  

When I click on the tag class=”b” it returns the encapsulated class=”a” id instead of the id of class=”b”. How do I code it so that when I click on class=”a” or class=”b” it returns the correct corresponding id value?

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

    you have to stop it from bubbling.

    $(".a,.b").click(function() {
      var current_id = $(this).attr("id"); 
      alert(current_id);
      // ...do something...
      return false; // <-- stop propagation
    }); 
    

    demo: http://jsfiddle.net/Q9njP/

    EDIT: better way

    $(".a,.b").click(function(event) {
      var current_id = event.target.id; 
      alert(current_id);
      // ...do something...
      event.stopPropagation();
    }); 
    

    demo: http://jsfiddle.net/xMGgA/1/

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

Sidebar

Related Questions

I have a problem with an animation in jQuery using ajax. On the click
I have the following code: <div id=parentDiv> <a href=someurl> ... </a> </div> HTML inside
I have this code: <span id=Santiago4>Santiago</span> <br>more html code here<br> <span id=Santiago4>Santiago</span> <script> jQuery(#Santiago4).click(function()
I have problem while using jquery maskedinput with asp.net textbox. I have a check
I have a problem with Jquery function getJSON, the action url does not trigger
I have a button(Button1) in a div element. Another button(Button2) outside that div may
I have a JQuery Accordion as below; <div id=accordion> <h3 class=ui-accordion-header><a id=link1 href=#>First Header</a></h3>
Okay, so i have: <div class=catergory> <div class=title>CATEGORY TITLE</div> <div class=listing> CODE FOR LISTINGS
I have an even in jQuery, when they click the DIV it hides itself.
I have a problem with selector by # inside live() or on() callback. $(document).on('click',.dfield_span_after,

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.