JSFiddle - React, Tailwind, and code Playground

by Denis Ineshin

HTML

<div class="test">
    <div class="bookmark">
        Bookmark        
    </div>
</div>

CSS

.test {
    padding: 2000px 0 0;
}

.bookmark {
    height: 50px;
    background: #f00;
    margin-bottom: 50px;
}

JavaScript

$(document).ready(function () {
	var $bookmark = $(".bookmark");
    var y = $bookmark.offset().top;
    $(window).scrollTop(y);
});