I am having some issues with jQuery MouseOut and MouseOver.
Every time I hover over the selected div, the child div that needs to show appears. however, it starts fl
try this
$(document).ready(function() { $('.section-text').hide(); $('.section-item-portal').hover(function() { $(this).children('.section-text').fadeIn(); },function(){ $(this).children('.section-text').fadeOut(); }); });