I have found jQuery: FadeOut then SlideUp and it\'s good, but it\'s not the one.
How can I fadeOut() and slideUp() at the same time? I trie
fadeOut()
slideUp()
It's possible to do this with the slideUp and fadeOut methods themselves like so:
slideUp
fadeOut
$('#mydiv').slideUp(300, function(){ console.log('Done!'); }).fadeOut({ duration: 300, queue: false });