Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
<script src="//code.jquery.com/jquery-1.11.1.min.js"></script>
  <meta charset="utf-8">
  <title>JS Bin</title>
</head>
<body>
  <div class="outer">
    <div class="inner"></div>
  </div>
  
</body>
</html>
 
.outer {
  width:250px;
  height:250px;
  background:red;
  position:relative;
}
  .inner {
    width:180px;
    height:180px;
    background:blue;
    position:absolute;
    top:50%;
    left:50%;
    margin-top:-90px;
    margin-left:-90px;
  }
 
$('.outer').click(function(e){
  console.log("outer clicked");
});
$('.inner').click(function(e){
  console.log("inner clicked");
});
Output 300px

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

Dismiss x
public
Bin info
anonymouspro
0viewers