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
You could set the current bottom value via: css('bottom'). This works for me (jQuery1.7.2):
$('#line-three').css({bottom:$('#line-three').css('bottom'), top:'auto'}); $('#line-three').animate({ bottom: position }, 250);