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
DEMO
Use mouseenter
and mouseleave
instead.
$(document).ready(function () {
$('.section-text').hide();
$('.section-item-portal').mouseenter(function () {
$(this).children('.section-text').fadeIn();
});
$('.section-item-portal').mouseleave(function () {
$(this).children('.section-text').fadeOut();
});
});