I have the following simple script to make an element of my webpage fade in as the page is loaded.
$('#box1').hide();
$('#box1').delay(300).fadeIn(500);
The problem I have is that when hidden, #box1 takes up no space (due to its class being visible:none). How can I hide #box1 so it doesn't disrupt other floated elements that depend on its presence?