Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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!

share|improve this question
why do you add the parent anyway? – toxicate20 Nov 25 '12 at 22:10
It works rather fine here – Alexander Nov 25 '12 at 22:17
@toxicate20 I have to admit I copied this from a site talking about going through the elements. – Kaktus Nov 26 '12 at 11:38
Alexander, thank you, but with this code it is the same, only faster? I have before this javascript too for form validation with the validation plugin. Like: submitHandler: function(form) { and $("#contact_form").validate({ .. what am I doing wrong? – Kaktus Nov 26 '12 at 11:40
Everytime I move the mouse over the image (not leaving it) the preview will be faded in and immiatedly out.. ?? – Kaktus Nov 26 '12 at 11:43

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.