JSFiddle - React, Tailwind, and code Playground

by nosfan1019

HTML

<ul>
    <li><img src="http://goo.gl/xH1Dd"/><a href="#">testing</a></li>
    <li><img src="http://goo.gl/xH1Dd"/><a href="#">testing</a></li>

</ul>

CSS

body {
    padding: 20px;}

img {
    width: 20px;
    height: 50px;}

.shit {
    background: url('http://goo.gl/VnXer');
    background-position: -5px -40px;
}

JavaScript

$("a").hover(
    function () {
        $(this).siblings().addClass("shit");
    },
    function () {
        $(this).siblings().removeClass("shit");
    }
);