JSFiddle - React, Tailwind, and code Playground

HTML

<div class="divclick" style="height:10000px; width:100px;background:red;">
asdf
</div>

JavaScript

function fixDiv() {
//scroll script goes here
    $('.divclick').html($(window).scrollTop()));
}
$(window).scroll(fixDiv);