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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T10:17:16+00:00 2026-05-16T10:17:16+00:00

I have a nested div like this <div id=one> <div id=two> id two goes

  • 0

I have a nested div like this

<div id="one">
    <div id="two">
        id two goes here
    </div>
    <div id="three">
           id three goes here
    </div>
    <div id="four">
          id four goes here
    </div>
</div>

Now i want to handle click and doubleclick events on all divs except in div#four,
like this

$('#one').live('dblclick', function() {
                    my javascript code goes here
                });
('#one').live('click', function() {
                    my javascript code goes here
                });

How can i use the above script and exclude the last nested div #four.

Thanks

  • 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-16T10:17:17+00:00Added an answer on May 16, 2026 at 10:17 am

    EDIT: Based on further clarification, try this:

    $('#one').bind('click dblclick', function( event ) {
        var id = event.target.id;
        if(id == "one" || id == "two" || id == "three") {
            if(event.type == "click") {
                // code for click event
            } else {
                // code for double click event
            }
        }
    });​
    

    EDIT: Based on our conversation under another answer, it seems like you want the #one element to be clickable, but none of its child elements. If that is right, try this:

    $('#one').click(function() {
        // code to run when `one` is clicked.
    }).children().click(function( event ) {
        event.stopPropagation();
    });
    

    Now if there’s any text in #one, the code for that element will fire, but it will not fire when you click any children of #one.

    Let me know if that was what you wanted.


    EDIT:

    If you are saying that you will have a dynamic number of elements inside #one, and the last one will not get the event, then do this:

    $('#one').delegate('div:not(:last-child)', 'click dblclick', function( event ) {
        if(event.type == 'click') {
            // do something for the click event
        } else {
            // do something for the double click event
        }
    });​
    

    Note that this assumes there will not be nested divs. Results may be unexpected if there are. Also, the #one element doesn’t fire events. Only its children.


    Original answer:

    $('#one,#two,#three').bind('click', function(){
      // code for click event
    })
    .bind('dblclick', function() {
       // code for double click event 
    });
    

    Or replace .bind with .live if you really need it.

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

Sidebar

Related Questions

I have two <div> , one nested into the other defined like this: <div
I have a nested ul menu structure that starts off like this: <div id=left>
I have this jQuery: $(this).parent().parent().find(.license_tooltip).stop(true, true).fadeIn(200); The $(this) object is nested within two div
If I have some elements like: <div class=one> <div class=two> </div> </div> and I
I have two divs nested in a containing div and want to continuously switch
I'm using colorbox on a div. I have nested div's. When i click the
I have a series of links nested within a div. When one of those
So I have a nested div structure and I would like to get the
I have something like this in my page: <div id=test> <div class=item>Test</div> <div class=item>Test</div>
I have a code like this: $(function() { if ($(div#ProductDetail_ProductDetails_div2 table tbody tr).text().trim() ==

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.