Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jun 27th, 2012  |  syntax: None  |  size: 0.48 KB  |  hits: 11  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. jQuery hide list
  2. <ul>
  3.  <li>First</li>
  4.    <ul class="blah">
  5.       <li>First a</li>
  6.       <li>First b</li>
  7.       <li>First c</li>
  8.    </ul>
  9.  <li>Second</li>
  10.  <li>Third</li>
  11. </ul>
  12.        
  13. $(document).ready(function(){
  14.     $('ul ul').slideUp();
  15.     $('ul>li').click(function(){
  16.         $(this).next('ul').slideToggle();
  17.  
  18.     });
  19. })
  20.        
  21. $('ul > li:first').click(function() {
  22.    $(this).next('ul').toggle();
  23. });
  24.        
  25. $('ul > li:first').click(function() {
  26.    $(this).children('ul').toggle();
  27. });