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

The Archive Base Latest Questions

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

jQuery: how do I make a collapsable tree nav? This solution is exactly what

  • 0

jQuery: how do I make a collapsable tree nav?

This solution is exactly what I need and is working well to collapse an unordered list I made, but what if i want to apply the same functionality to the nested li’s? When I add the same

$('.sortable>li>ol>li').click(function() {
$(this).children("ol").stop(true, true).toggle("fast");
});

and then click, it does what it needs to but the node then closes..

my HTML is

   <ul class='sortable'>
        <li>text1</li>
        <ul>
          <li>text2</li>
           <ul>
             <li>text3</li>
             <li>text3</li>
             <li>text3</li>
           </ul>
          <li>text2</li>
          <li>text2</li>
        </ul>
        <li>text1</li>
        <li>text1</li>
    </ul>

So when I click on 1, 2 slides down and that works but if i click on 2, i want 3 to toggle but 2 slides up.

$('.sortable>li').click(function() {
    $(this).children("ol").stop(true, true).toggle("fast");
});​

Thats my code… I hope I’ve explained this, I’ll make a jFiddle too.

http://jsfiddle.net/tara_irvine/uaDhr/4/

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

    Along the lines of what YonoRan was going for, you want to stop the event from bubbling up from the inner click element to the outter one. Modifying your code to use event.stopPropagation I believe got the desired result:

    $('.sortable>li').click(function() {
        $(this).children("ol").stop(true, true).slideToggle("fast");
    });
    
    $('.sortable>li>ol>li').click(function(event) {
        event.stopPropagation();
        $(this).children("ol").stop(true, true).toggle("fast");
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have found exactly what I need on the jQuery UI examples: Collapsable Content
How can i make jquery tabs, with exactly the same tabs on top AND
I would like to use jQuery to make this: <ol> <li>item a</li> <li>item b</li>
jQuery plugins make code much more reusable. I previously made a plugin that would
How to make jQuery slider with fixed maximum ... exact like this: http://jqueryui.com/demos/slider/#rangemin I
I use jQuery and make an iteration over a list of projects. Every project
I want to make jQuery navigates directly (no animation need) to a id that
I am using jQuery to make a nav slideDown. I want when people click
I have a set of divs that I want to make collapsible/expandable using jQuery's
I am using jQuery to make an AJAX request to a remote endpoint. That

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.