JSFiddle - React, Tailwind, and code Playground

HTML

<div style="height:50px">
</div>
<div class='foo' style="height:50px;width:80px;background-color:#000;">
</div>

JavaScript

$(function() {
    alert($('div.foo').offset().top);
});