Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery-2.0.3.min.js"></script>
<meta charset=utf-8 />
<title>JS Bin</title>
</head>
<body>
  <nav class="menu">
    <div id="show">
        <p>Menu</p>
    </div>
    <div id="profile">
            <img src="images/glenn.jpg" alt="my face"/>
            <p>where dreams come true.</p>
        </div>
    <ul>
        <li><a href="index.html">Me</a></li>
        <li><a href="work.html">Work</a></li>
        <li><a href="love.html">Love</a></li>
        <li><a href="contact.html">Contact</a></li>
    </ul>
</nav>
</body>
</html>
 
 $(document).ready(function(){
   
        $('#show').click(function(){
            $('.content').toggleClass("content_out");
            $('.menu').toggleClass("menu_out");
        });
   
});
Output

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

Dismiss x
public
Bin info
anonymouspro
0viewers