Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>JS Bin</title>
  <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
</head>
<body>
  <div class="test">
    <ul>
        <li>link one</li>  
        <li>link 2</li>
        <li>link 2</li>
      </ul>
  </div>
</body>
</html>
 
.test{
  background-color:white;
  padding:10px;
}
li{
  list-style:none;
  padding:5px;
  background-color:#3DCABE;
  margin:2px;
  cursor: pointer;
}
li:hover{
    background-color:red;
    transition: all 1s;
}
 
$(".test > ul li").click(function(){
  $(this).css("background-color","blue");
});
Output 300px

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

Dismiss x
public
Bin info
insetAvijitpro
0viewers