Slide down header
Basic sliding down of a div. Source: http://www.codecademy.com
by clarusdignus
HTML
<div><br/><strong>I'm the Header!</strong></div>
CSS
div {
height: 60px;
width: 100%;
background-color: #008800;
color: #FFFFFF;
font-family: Verdana, Arial, Sans-Serif;
display:none;
}
JavaScript
$(document).ready(function() {
$("div").slideDown("slow");
});