JSFiddle - React, Tailwind, and code Playground

by brettwgreen

HTML

<li><a href="#" id="HCLink">HEATING & COOLING | </a> </li>
 <div class="HCContent" style="display:none;">
   <p>Div Content...</p>
 </div>

JavaScript

$(function() {
$('#HCLink').on('mouseover', function() {
    $('.HCContent').show('slow');
    return false;
});
$('#HCLink').on('mouseout', function() {
    $('.HCContent').hide('slow');
    return false;
});

});