I am currently experimenting with displaying hidden text when the mouse enters a div and hiding it when it leaves.
Here is the progress I've made on my JSFiddle:
$(document).ready(function() {
$(".image").mouseover(function(){
$(".hover").show();
})
$(".image").mouseout(function(){
$(".hover").hide();
});
Any assistance or feedback would be greatly appreciated. Thank you!