[jQuery] Canceling an animation

[jQuery] Canceling an animation


I have an animation that runs after a delay:
setTimeout(function(){$(".mbox").fadeIn('slow');},500);
If I need to cancel it, how do I this?
I would like to cancel it regardless of whether it is still in the
initial setTimeout of 500ms, or has already started to fadeIn.