I was wondering if I could fadeout as well as slide the flash notification but that only one that works is the fadeOut. What can I do?
$(document).ready(function() {
setTimeout(function(){
$('#flash_wrapper').fadeOut("slow", function() {
$(this).remove();
})
}, 4500);
});
</script>
I want to be able to use slideUp
and FadeOut
at the same time. How do I do that? I still dont know how to get these to work