When I first saw the alerts in Bootstrap I thought they would behave like the modal window does, dropping down or fading in, and then fading out when closed. But it seems li
You can fade-in a box using jquery. Use bootstraps built in 'hide' class to effectively set display:none on the div element:
and then use the fadeIn function in jquery, like so:
$("#saveAlert").fadeIn();
There are also specify a duration for the fadeIn function, e.g: $("#saveAlert").fadeIn(400);
Full details on using the fadeIn function can be found on the official jQuery documentation site: http://api.jquery.com/fadeIn/
Just a sidenote as well, if you arent using jquery, you can either add the 'hide' class to your own CSS file, or just add this to your div: