Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
<script src="https://code.jquery.com/jquery-1.11.3.js"></script>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>JS Bin</title>
</head>
<body>
  <ul class="daily-featured__videos">
        <li class="the-daily-featured__video daily-featured__video">
            <div class="daily-featured__video-image">
              <span>Some Stuff</span>
            </div>
            <div class="daily-featured__video-text">
                <span>Other Stuff</span>
            </div>
        </li>
        <li class="the-daily-featured__video daily-featured__video">
            <div class="daily-featured__video-image">
              <span>Some Stuff</span>
            </div>
            <div class="daily-featured__video-text">
                <span>Other Stuff</span>
            </div>
        </li>
        <li class="the-daily-featured__video daily-featured__video">
            <div class="daily-featured__video-image">
              <span>Some Stuff</span>
            </div>
            <div class="daily-featured__video-text">
                <span>Other Stuff</span>
            </div>
        </li>
  </ul>
  
  
</body>
</html>
 
$(document).ready(function() {
  $(".the-daily-featured__video")
    .mouseenter( function(){ $(this).addClass("active") })
    .mouseleave( function(){ $(this).removeClass("active") });
});
Output

This bin was created anonymously and its free preview time has expired (learn why). — Get a free unrestricted account

Dismiss x
public
Bin info
anonymouspro
0viewers