Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
<script class="jsbin" src="http://code.jquery.com/jquery-1.7.1.min.js"></script>
<meta charset=utf-8 />
<title>JS Bin</title>
<style>
div {  
  position: absolute;
  left: 0px; 
  top: 0px; 
  padding: 2%;
}
  p{
    margin: 20px;
    clear: both;
  }
</style>
</head>
<body>
<div ID="XXX" style="width: 3%; height: 100%; background: lightgrey">
  <div ID="XXX1" style="width: 500PX; background: #F0F">
      sdffsdfsdf
  </div>
</div>
  <p>dsbfjvhbdivhjlzdhvfilv</p>
<div id=d style="width: 20%; height: 50%; background: gray; display: none"><a href="">content</a>
</div>
 
  
<script>/*
$( "#XXX" ).click(function( event ) {
      $("#d").css("background", "red");
      $("#d").show();
});
  */
  
  $('#XXX').on('click', function (e) {
    if (!$(e.target || e.srcElement).is('#XXX')) {
        // ивент сработал на вложенном элементе
        e.stopPropogation();
        return false;
    }
      $("#d").css("background", "red");
      $("#d").show();
    // сделать что-то
});
    
  $('#d').mouseleave(function () {$(this).hide(); })
</script>
  
</body>
</html>
Output

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

Dismiss x
public
Bin info
anonymouspro
0viewers