<title>My Example</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
$( "#start" ).click( function() {
$( "#animation" ).animate({
$("#stop").click(function(){
<button id="start">Start Animation!</button>
<button id="stop">Stop Animation!</button>
<div id="animation">Animation</div>