JSFiddle - React, Tailwind, and code Playground
by Joe Young
HTML
<div id= "maBlock"></div>
<button id="button1"type="button">Click Me!</button>
JavaScript
$(document).ready(function () {
$("#button1").click(function () {
$("#maBlock").animate({
height: "950px",
top: "0px",
}, 2000);
});
}); //here you need the ');'