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

What I would like happen is this

I hover over the elements and their captions appear. That's easy.

But I also want to click the element and keep that hover state there, while the others still have the hovering effect.

I can't seem to do the 2nd step right. I don't know how to add the hover states back on after I click other elements.

Here is what I have so far:

http://jsfiddle.net/62cRZ/1/

Thank you

EDIT: Sorry for the bad description. Here's what I meant. Okay so there's image1 and image2 When I click on image1, the caption stays, no more fading out. When I hover on image2, the caption fades in and out.

Now I click on image2, the caption now stays, no more fading. BUT image1's fading caption returns back to the original state where it's fading in and out when you hover in and out.

share|improve this question
You mean keeping the caption on (once clicked over the image) and clicking the other maintain the caption of the first one on? – domoindal Jul 11 '12 at 18:52
IF someone clicks once, the caption should remain visible, but if they click again, should it then disappear? – j08691 Jul 11 '12 at 18:58
Sorry for the bad description. Here's my edit. – Matt Jul 11 '12 at 19:16

1 Answer

Instead of unbinding the hover actions, you could add a class to the "active" caption, and then check against it in your hover actions:

$('.pic').hover(function() {
    var caption = $(".caption",this);
    if ( ! caption.hasClass("active") ) { 
        caption.stop().fadeIn();
    }
},
function() {
    var caption = $(".caption",this);
    if ( ! caption.hasClass("active") ) { 
        caption.stop().fadeOut();
    }
});

$('.pic').click(function() {
    //fade out all other captions that have kept their hover states/ This wasn't the first pic clicked on
    $('.caption').fadeOut().removeClass("active");

    //fade in only this caption when clicked
    $(".caption", this).fadeIn().addClass("active");

});​

Example: http://jsfiddle.net/bstakes/62cRZ/9/

share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.