I have a problem with jQuery. I am trying to make an image appear(or fade in) upon onmouseover event and disappear(or fade out) upon onmouseout event. The HTML that I have is:
<div class="wrapper">
<img id="mainImg" src="..." />
</div>
The CSS:
#mainImg
{
visibility:hidden;
}
And the JavaScript is as follows:
$("#mainImg").mouseover(function () {
$(this).attr("visibility", "visible");
}).mouseout( function () {
$(this).attr("visibility", "hidden");
});
But this code does not work. I am struggling to understand what is wrong but I cannot sort it out. I tested the code also in JsFiddle with no result. I also tried with the hover() function without success.
May you please tell me what I am doing wrong and propose a solution? Thanks
Francesco

hover(function() { //onmouseover }, function() { //onmouseout });– Sylvain Apr 27 '11 at 9:25