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

I have the following JS:

 $(".place").mouseover(function () {
            $(this).css('background-color', '#00cc00'); // green color
        }).mouseout(function () {
            $(this).css('background-color', '#336699'); // light blue color
        });

When mouse is over then div become green. I want when user clicks on div then div persist green color. If they click again then set color to light blue. How can I do this?
Thanks.

share|improve this question

4 Answers

up vote 7 down vote accepted

Use .toggleClass() function instead.

Usage:

$(".place").click(function () {
   $(this).toggleClass("green");
});

Initially give background-color: #336699 and override this style later on with the toggleClass().

Your CSS should look something like this.

.place { background-color: #336699; }
.place:hover, .place.green { background-color: #00cc00; }

See this in action here.

Updates:


Update 1: Demo with the green in hover .

share|improve this answer
green color will be on hover also – user348173 Mar 15 '12 at 5:43
@user348173, minor update, check the update in my CSS part – Starx Mar 15 '12 at 5:45
@Downvoter, Please explain the downvote. – Starx Mar 15 '12 at 5:46
Cool. Big thanks. – user348173 Mar 15 '12 at 6:02
$(".place").click(function(){
   if($(this).css('background-color')=='#00cc00')
         $(this).css('background-color', '#336699');
   else {
         $(this).css('background-color', '#00cc00');
   }
});
share|improve this answer

Use CSS for the hover, not jQuery:

.place {
  background-color: #336699;
}

.place:hover {
  background-color: #00cc00;
}

And as @Starx pointed out, use .click().

share|improve this answer

The easiest way to do this would be a toggle, perhaps using a class like this:

$(".place").click(function () {
        $(this).toggleClass('green-bg');
});

Have it light blue by default, then on click it would toggle the "green-bg" class which would of course apply the green background.

You might have some issues with toggling both on hover and on click, I'm not sure what you want the priority to be as to what action takes precedent in assigning the bg color.

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.