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 can animate it using this: Check out this JSFiddle:
$('#button').click(function(e){ // On click of something e.preventDefault(); // Prevent the default click aciton $("#line-three").animate({ top: "300px", }, 1200); });