Here is a fiddle for reference: http://jsfiddle.net/rabelais/Fzs7u/
I am working on a feature where thumbnails and titles toggle when hovering over them with the mouse. However, I am facing an issue where the title does not remain visible after moving to a different thumbnail. Should I consider using something other than the toggle function, such as targeting the css display rule?
$(".thumbnail-wrapper").on("mouseover mouseout", "img", function () {
$("#" + $(this).data("title")).toggle();
});