JSFiddle - React, Tailwind, and code Playground
by nd87
HTML
<h1 id="anchor">Lorem Ipsum</h1>
<div id="content">Space... scroll down</div>
<p><a href="#anchor" class="topLink">Back to Top</a></p>
CSS
#content{
min-height: 1000px;
background:grey;
}
JavaScript
$("a.topLink").click(function() {
$("html, body").animate({
scrollTop: $($(this).attr("href")).offset().top + "px"}, {duration: 500, easing: "swing"
});
return false;
});