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
Possibly:
$("#line-three").animate({position:'absolute',top:'auto',bottom:'100px'},1200)
EDIT
Yes, this is going to be trickier than it first appears. You'll might need to analyse it's current position relative to it's container (using offset) and work from there.
offset