Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script>
<meta charset=utf-8 />
<title>JS Bin</title>
</head>
<body>
  <div id="ancestor">
  <input type="checkbox" checked>
  </div>
  <script>
    (function() {
      $("#ancestor").css("display", "none");
      display("display property is now: " + $("input:checkbox:checked").css("display"));
      display("visible tells us what's going on: " +
              $("input:checkbox:checked").is(":visible"));
      
      function display(msg) {
        var p = document.createElement('p');
        p.innerHTML = String(msg);
        document.body.appendChild(p);
      }
    })();
  </script>
</body>
</html>
Output

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

Dismiss x
public
Bin info
anonymouspro
0viewers