JSFiddle - React, Tailwind, and code Playground
by AaronLayton
HTML
<a href="#clicked" class="findMe"></a>
CSS
html, body {
width:100%;
height:100%;
}
body {
background-color:#f2f2f2;
}
.findMe {
height:1px;
width:1px;
display:block;
background:#aaa;
position:absolute;
}
JavaScript
var h = $("html").innerHeight();
var w = $("html").innerWidth();
$('.findMe').css("left", Math.random() * (w - 0) + 0);
$('.findMe').css("top", Math.random() * (h - 0) + 0);