Document Object Model (DOM)
Using the DOM to access and modify HTML. Fading out a div on document ready. Source: http://www.codecademy.com
by clarusdignus
HTML
<div></div>
CSS
div {
height:100px;
width:100px;
background-color:#FF0000;
border-radius:5px;
}
JavaScript
$(document).ready(function() {
$("div").fadeOut(1000);
});