Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
<script class="jsbin" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
<meta charset=utf-8 />
<title>JS Bin</title>
<style>
  .team { font-size:12px;color: #333; margin: 20px 0 -15px -10px; padding: 0; overflow: hidden; }
  .team li {
    float: left;
    width: 150px;
    height: 180px;
    margin: 0 0 15px 10px;
    overflow: hidden;
    cursor: pointer;
  }
  .team strong { display: block; text-align: center; font-weight: 400 }
  .team .active strong { font-weight: 700; font-size:18px; color: blue; }
</style>
  
</head>
<body>
  
</body>
<div class="team-tags">
              <a class="s1" rel="t1 t2 t3" href="#">One</a>
              <a class="s2" rel="t2 t3" href="#">Two</a>
              <a class="s3" rel="t1" href="#">Three</a>
              <a class="s4" rel="t4 t6" href="#">Four</a>
              <a class="s5" rel="t2 t5" href="#">Five</a>
            </div>
<ul class="team">
            <li class="t1">
              
              <strong>1</strong>
            </li>
            <li class="t2">
              <strong>2</strong>
            </li>
            <li class="t3">
              <strong>3</strong>
            </li>
            <li class="t4">
              <strong>4</strong>
            </li>
            <li class="t5">
              <strong>5</strong>
            </li>
            <li class="t6">
              <strong>6</strong>
            </li>
          </ul>
</html>
 
$(document).ready(function(){
  
function getTeams(elem) {
  return $('.' + elem.rel.replace(' ', ', .'));
}
$('.team-tags a[rel]').hover(
 function() { getTeams(this).addClass('active'); },
    function() { getTeams(this).removeClass('active'); }
);
});
Output

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

Dismiss x
public
Bin info
anonymouspro
0viewers