JSFiddle - React, Tailwind, and code Playground

by Robert N.

HTML

<h1>Начало страницы</h1>
<div style="height:1000px">
    <p style="margin-bottom:600px">Крутите колесико мышки...</p>
    <p>И кликните "К началу страницы"</p>
    <input type="button" class="totop" value="К началу страницы"/>
</div>

JavaScript

(function($){
    $('.totop').click(function(){
        $("html,body").animate({
            scrollTop:0
        },600);
        return false;
    });
})(jQuery);