I\'m looking to animate a div element from an absolute top position to an absolute bottom position on the page load.
The combination of CSS and jQuery code below fai
If you want to animate you should do:
$("#line-three").animate({ top: "500px", }, 1200);
Fiddle here: http://jsfiddle.net/nicolapeluchetti/xhHrh/