Back to Tutorial Paste Your Code here! <!DOCTYPE html> <html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script> <script> $(document).ready(function(){ $("button").click(function(){ $("div").animate({bottom: '250px'}); }); }); </script> </head> <body> <button>Start Animation</button> <h2>JQuery animate() Example</h2> <div style="background:blue;height:100px;width:100px;position:absolute;"></div> </body> </html> Output