Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>JS Bin</title>
</head>
<body>
  <div class="container">
    <div id="shadow"></div>
    <div id="window"></div>
  </div>
  <div id="close">
      Close!
    </div>
    <div id="url">
      Url
    </div>
  <script   src="https://code.jquery.com/jquery-2.2.4.min.js"   integrity="sha256-BbhdlvQf/xTY9gja0Dq3HiwQF8LaCRTXxZKRutelT44="   crossorigin="anonymous"></script>
  <script>
  $(document).ready(function(){
    $('#close').click(function() {
      $('#shadow').hide();
      $('#window').hide();
    });
    $('#url').click(function() {
      $('#shadow').show();
      $('#window').show();
    });
  })
  </script>
</body>
</html>
Output 300px

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

Dismiss x
public
Bin info
anonymouspro
0viewers