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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 2, 20262026-06-02T07:51:38+00:00 2026-06-02T07:51:38+00:00

Suppose I have: <div id=outer onclick=thingsHappen()> <div id=inner></div> </div> When I click on outer

  • 0

Suppose I have:

   <div id="outer" onclick="thingsHappen()">
      <div id="inner"></div>
   </div>

When I click on outer or inner div, thingsHappen() is executed. That is obvious.

Now I have got a need to define a different method for the inner div.
For example

$("#inner").click(function() {
    doThings();
});

When I click on inner both thingsHappen() and doThings() executes.
How do I execute doThings() when I click on inner div without executing thingsHappen()?

I tried to unbind click method from #inner, but it did not work.
PS. I cannot change the structure of 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-06-02T07:51:39+00:00Added an answer on June 2, 2026 at 7:51 am

    Stop the propagation of the event:

    $("#inner").click(function(e) {
        doThings();
        e.stopPropagation();
    });
    

    Example: http://jsfiddle.net/QNt76/

    JavaScript events bubble up the DOM tree unless you stop them from propagating. This is what was causing the parent event handler to get notified.

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

Sidebar

Related Questions

Suppose I have a div with width 200px and font-size 16. Now I want
Suppose I have an outer container of unknown fixed width, and an inner element,
Suppose I have one div in my page. how to detect the user click
Suppose I have a div in my page, that doesn't have a width property
Suppose I have ten list item, in that case I can use both div
Suppose I have text inside a div right now. When I resize my browser
Suppose I have a div named container as shown <div id='container'>50</div> Now if I
Suppose I have div and I want to fetch data and push data into
Suppose I have an div. Inside this div, I have two divs floating left,
Suppose I have the following HTML: <div id=test> <span style=display:inline;>foo</span> <span style=display:none;>bar</span> <span style=display:inline;>baz</span>

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.