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

I was trying out jquery and tried this example .

 $(document).ready(function(){
      $("button").mouseover(function(){
        $("p#44.test").css("background-color","yellow");
        $("p#44.test").hide(1500);
        $("p#44.test").show(1500);
        $("p#44.test").css("background-color","red");
      });
    });

I expected the following to happen

1. Color of <p> to turn yellow
2. <p> to slowly hide away
3. <p> to slowly show
4. Color of <p>to turn red

But this is what happened

1. Color of <p> to turn red
2. <p> to slowly hide away
3. <p> to slowly show

Why So

share|improve this question

3 Answers

up vote 16 down vote accepted

The .css() function doesn't queue behind running animations, it's instantaneous.

To match the behaviour that you're after, you'd need to do the following:

$(document).ready(function() {
  $("button").mouseouver(function() {
    var p = $("p#44.test").css("background-color", "yellow");
    p.hide(1500).show(1500);
    p.queue(function() {
      p.css("background-color", "red");
    });
  });
});

The .queue() function waits for running animations to run out and then fires whatever is in the function supplied.

share|improve this answer

This is how it should be:

Code:

$(function(){
  $("button").mouseover(function(){
    var $p = $("#P44");
    $p.stop()
      .css("background-color","yellow")
      .hide(1500, function() {
          $p.css("background-color","red")
            .show(1500);
      });
  });
});

Demo: http://jsfiddle.net/p7w9W/2/

Explanation:

You have to wait for the callback on the animating functions before you switch background color. You should also not use only numeric ID:s, and if you have an ID of your <p> there you shouldn't include a class in your selector.

I also enhanced your code (caching of the jQuery object, chaining, etc.)

Update: As suggested by VKolev the color is now changing when the item is hidden.

share|improve this answer
Setting the $p.css("background-color", "red"); before the $p.show will make it a little bit nicer, without that blink effect after showing the p-content again. – VKolev Nov 26 '10 at 7:57

try putting a delay on the last color fade.

$("p#44.test").delay(3000).css("background-color","red");

What is a valid value for id attributes in html
ID's cannot start with digits!!!

share|improve this answer
The second example won't work, since the .css() function doesn't chain into the animation flow. – Krof Drakula Nov 26 '10 at 7:23
Thank you edited! – austinbv Nov 26 '10 at 7:24

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.