JSFiddle - React, Tailwind, and code Playground
HTML
<div class="offsetdiv"></div>
CSS
.offsetdiv {
width:100px;
height:100px;
margin-top:30px;
margin-left:30px;
background-color:red
}
JavaScript
jQuery(document).ready(function() {
alert("Offset from left in px: " + jQuery('.offsetdiv').offset().left);
alert("Offset from top in px: " + jQuery('.offsetdiv').offset().top);
})