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/jquery.min.js"></script>
<meta charset=utf-8 />
<title>JS Bin</title>
</head>
<body>
  
  
  
<div class="profile-banner">
    <div class="edit-banner">
        Edit Banner 1
    </div>
</div>
  
  
<div class="profile-banner">
    <div class="edit-banner">
        Edit Banner 2
    </div>
</div>
  
  
<div class="profile-banner">
    <div class="edit-banner">
        Edit Banner 3
    </div>
</div>
  
  
<div class="profile-banner">
    <div class="edit-banner">
        Edit Banner 4
    </div>
</div>
  
  
</body>
</html>
 
.profile-banner{
  padding:20px;
  width:150px;
  height:40px;
  background:#eee;
  margin:10px;
}
.edit-banner{
  width:150px;
  background:#eee;
  display:none;
}
 
$('.profile-banner').on('mouseenter mouseleave',function( e ){
    var inOut = e.type=='mouseenter' ? 1 : 0;
    $(this).find('.edit-banner').stop().fadeTo(500, inOut);
});
Output

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

Dismiss x
public
Bin info
anonymouspro
0viewers