Reputation Activity
-
what you can do is set the opacity back to 0 after you have hovered over a new item
so it would be something like
$('[data-target="#home-feature"]').on('hover', function () { // put opacity to 0 agan $('.home-feature-right-content').css('opacity', 0); // Fade in the div now });