Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
<script src="https://code.jquery.com/jquery-1.8.3.js"></script>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>JS Bin</title>
</head>
<body>
  <p>Je suis un menu</p>
  <nav id="learnJQ">
<ul>
        <li>Item</li>
        <li>Item</li>
        <li>
          Item
          <ul>
            <li>Item </li>
            <li>
              Item
              <ul>
                <li>Item
                  <ul>
                    <li>Item</li>
                    <li>
                      Item 
                    <ul>
                      <li>Item</li>
                      <li>Item</li>
                    </ul>
            </li>
          </ul>
                
                
                </li>
                <li>Item</li>
          
              </ul>
            </li>
            <li>Item</li>
          </ul>
        </li>
        <li>
          Item
          
        </li>
        <li>Item</li>
      </ul>
  </nav>
  
<p>je suis une liste</p>
<ul>
    
        <li>Item
   <ul>
            <li>Item</li>
            <li>
              Item
              <ul>
                <li>Item</li>
                <li>Item</li>
          
              </ul>
            </li>
            <li>Item</li>
          </ul></li>
        <li>Item</li>
        <li>Item</li>
        
      </ul>
</body>
</html>
 
.ssmenuOff:before {
  color:red;
  content : ">"
}
ul {
  list-style-type : none;
}
 
        $('#learnJQ li').has("ul").click(function(){
                                       $(this).children().toggle('slow');
                                             return false;
                                        })                            
                                  .children().hide(5000,function(){
          $(this).parent().addClass("ssmenuOff");
        });
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
dupontpro
0viewers