I have been trying to set up the following script without success.

I have the element #num_11 which fades in a couple of other elements on hover and fades them out on mouseout. That's working perfectly (which I am already quite proud of)

What I want is that if you CLICK on #num_11 that the other elements STAY visible. On click again, they should disappear again and the whole script go back to the original "mode"

$("#num_11").hover(
    function(){
        $("#identification li").each(function() {
            $("h1", this).fadeIn();
            $("span", this).addClass("opague");
        });
    },
    function(){
        $("#identification li").each(function() {
            $("h1", this).hide();
            $("span", this).removeClass("opague");
        });
    }
);

$("#num_11").click(function(){
    $(this).toggleClass('clicked');
});

What I have tried in the code above was putting $("#num_11").not(".clicked").hover( and $("#num_11:not(".clicked")").hover( as well as a if-else-query which ended up in chaos…

I would really appreciate your help with my challenge.

All the best, K

link|improve this question
you are not going to accept the answer? – Chamika Sandamal Nov 10 '11 at 7:07
feedback

2 Answers

try following code;

$("#num_11").hover(
function(){
  if(!$(this).hasclass('clicked')){
    $("#identification li").each(function() {
        $("h1", this).fadeIn();
        $("span", this).addClass("opague");
    });
  }
},
function(){
  if(!$(this).hasclass('clicked')){
    $("#identification li").each(function() {
        $("h1", this).hide();
        $("span", this).removeClass("opague");
    });
  }
});
$("#num_11").click(function(){
$(this).toggleClass('clicked');
});
link|improve this answer
Thanks Chamika, this worked for me! I don't know why this solution didn't come to my mind during my helpless tries ;) – user1036858 Nov 9 '11 at 12:24
just a thanks? no up votes. no marked as answer :( – Chamika Sandamal Nov 9 '11 at 16:48
feedback

Try filtering:

$("#num_11").filter(function() {
    return !$(this).hasClass('clicked');
}).hover(
    ...
);
link|improve this answer
Hi rkw, thanks for your quick answer. Unfortunately this solution didn't bring the result – the behaviour was all the same as without filtering. But I like your approach with only one extra line of code – user1036858 Nov 9 '11 at 12:23
I just realized something, is #num_11 a single element, or is it suppose to represent a group of elements? – rkw Nov 9 '11 at 17:52
feedback

Your Answer

 
or
required, but never shown

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