jquery hover on and off issue

http://stackoverflow.com/questions/24942225/jquery-hover-on-and-off-issue

by Aaron Kahlhamer

HTML

<div class="fourth">
    <div class="products">
        <h4 class="hide"><a href="#">Learn More</a></h4>
    </div>
</div>

CSS

.fourth {
    background-color:orange;
    float:left;
    height:100px;
    width:100px;
}

JavaScript

$('.hide').fadeOut("fast"); 

$(".fourth").hover(function() {
    
   $(this).find('.hide').stop().fadeToggle("slow");
      
});