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