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
$("#line-three").css({position:'absolute',top:'auto',bottom:'100px'})
That should do it. You probably need to reser the 'top' value to auto
EDIT
To animate, you need to use .animate();
Try this:
$("#line-three").animate({position:'absolute',top:'auto',bottom:'100px'}, 400)