JSFiddle - React, Tailwind, and code Playground

by amkrtchyan

HTML

<div id="viewer">
    <ul class="tj_gallery">
        <li><a href="#"><img src="http://www.verum.com/Libraries/MAM_Forum_Images/ASD.sflb.ashx" alt="" width="280" height="178" /></a><a href="#" class="abhover">01</a></li>
         <li><a href="#"><img src="http://www.verum.com/Libraries/MAM_Forum_Images/ASD.sflb.ashx" alt="" width="280" height="178" /></a><a href="#" class="abhover">02</a></li>
    </ul>
</div>

JavaScript

$(".tj_gallery li").hover(function(){
    $(this).children(".abhover").stop(true,true).fadeIn("fast");
}, function(){
     $(this).children(".abhover").stop(true,true).fadeOut("fast");
});