Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Tree view expand collapse functionality?

Tags:

html

css

I want to add expand & collapse functionality in the tree view list..how to add this? I have added the jqueries required. . .

<div id="sidetree">
   <div class="company">Company</div>
   <div id="sidetreecontrol" class="sidetreecontrol"></div>
   <ul class="treeview" id="tree">
      <li><a href="#">Home</a></li>
      <li class="expandable">
         <div class="hitarea expandable-hitarea"></div>
         <span><strong>About Us</strong></span>
         <ul style="display: none;">
            <li><a href="#">Our Offers</a></li>
            <li class="last"><a href="#">Our Offers</a></li>
         </ul>
      </li>
   </ul>
</div>

1 Answers

I think adding

<a href="?#">Collapse All</a> | <a href="?#">Expand All</a>

should do the trick.

like image 156
Bhawna Malhotra Avatar answered Aug 29 '26 03:08

Bhawna Malhotra



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!