message fade out
message fade out
I have a message that fades in when a condition is met. This works fine, but I want the same message to fade out at the same rate after 4-5 seconds. How can I do this with the current code?
- else
{
$("#msgbox").fadeTo(200,0.1,function(data) //start fading the messagebox
{
//add message and change the class of the box and start fading
$(this).html('You have entered an incorrect login<br /> please try again!').addClass('messageboxerror').fadeTo(900,1);
});
}
});