$(document).ready(function() {
$("#online_bestellen").hide();
setTimeout(function(){
$("#online_bestellen").show()
}, 4000);
$('#online_bestellen').animate({
bottom: '-=100px'
}, 1500, 'easeOutBounce');
});
The div called online_bestellen
hides and 4 seconds it appears again but it doesn't slide in..
Who has a better option?