Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
<script class="jsbin" src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<meta charset=utf-8 />
<title>JS Bin</title>
<!--[if IE]>
  <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<style>
  article, aside, figure, footer, header, hgroup, 
  menu, nav, section { display: block; }
  .panel { width:640px; height:200px }
  .red { background-color:red; position:absolute; }
  .orange { background-color:orange; position:absolute; }
  .green { background-color:green; position:absolute; }
  .panel .desc { 
    position:absolute; bottom:0; left:0; width:100%; background-color:#333;
  }
  .desc p { margin:0; padding:10px; color:#fff; }
  #panels { width:640px; height:200px }
</style>
</head>
<body>
  <ul>
    <li><a href="#" class="switcher">Red</a></li>
    <li><a href="#" class="switcher">Orange</a></li>
    <li><a href="#" class="switcher">Green</a></li>
  </ul>
  <div id="panels">
    <div class="panel red">
      <div class="desc">
        <p>This is my description.</p>
      </div>
    </div>
    <div class="panel orange">
      <div class="desc">
        <p>This is another description.</p>
      </div>
    </div>
    <div class="panel green">
      <div class="desc">
        <p>This is my last description.</p>
      </div>
    </div>
  </div>
</body>
</html>
 
$(function(){
 
  $(".switcher").each(function(i,o){
    $(this).click(function(e){
     e.preventDefault();
      $(".panel").eq(i).fadeIn().siblings().fadeOut();
    });
  });
  
});
Output

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

Dismiss x
public
Bin info
anonymouspro
0viewers