JSFiddle - React, Tailwind, and code Playground
HTML
<p>
<strong>Height of Scroll:</strong><br />
<span></span>
</p>
JavaScript
$(window).scroll(function() {
var height = $(window).scrollTop();
$("span").append(height);
});
<p>
<strong>Height of Scroll:</strong><br />
<span></span>
</p>
$(window).scroll(function() {
var height = $(window).scrollTop();
$("span").append(height);
});