I am working on a simple Thumbnail gallery with a css fallback for the users without javascript. I first build the gallery with css. It uses the css class hover to show the bigger image.
But if the user has javascript on, I want the same effect to be shown with jquery and a slow fadein.
The html looks like this:
<ul id="reference_gallery">
<li><a href="#"><img src="img/mychoice.jpg" alt="atl" class="thumb" /><img src="img/mychoice.jpg" alt="alt" class="preview" /></a></li>
<li><a href="#"><img src="img/show.jpg" alt="alt" class="thumb" /><img src="img/show.jpg" alt="alt" class="preview" /></a></li>
</ul>
The javascript/jquery part looks like this: (within the document ready function)
$('img.preview').addClass("script_preview");
$('img.preview').removeClass("preview");
$('img.thumb').hover(
function() {
$('img.script_preview',$(this).parent()).fadeIn('slow');
},
function() {
$('img.script_preview',$(this).parent()).fadeOut('slow');
}
);
When the javascript is loaded, I remove the class preview, which is only for the non-js solution. Then at hovering the thumbnail, the preview image (which has now class script_preview) should be faded in. It worked good almost before I added the this.parent part (so it will fade only the actual picture, not all) but now after adding, when I hover the image, it fade in and out, even if the mouse is over the picture. And when I remove the mouse from the thumb, it does same. The problem is at the parent thing, but how should it be correctly? I am still a noob when it comes to javascript.
Thank you very much for your help!