Show Output
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>jQuery animate()</title> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" /> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> <script> $(document).ready(function() { $("#animation").click(function() { $("div").animate({left: '250px'}); }); }); </script> </head> <body> <button style="background:#e8e8e8;margin:0 0 10px 0" class="btn" id="animation">Start Animation</button><br /> <div style="background:#11a286;height:120px;width:120px;position:absolute;"></div> </body> </html>