[jQuery] fadeOut callback problem - is this a bug?
The contents of a fadeOut callback are supposed to be executed after
the fadeOut has completed but there are problems when fading out
multiple selectors (the alert is used to demonstrate).
$("#foo, #bar").fadeOut( function(){ alert('test'); $("#baz").fadeIn
(); })