JSFiddle - React, Tailwind, and code Playground

by sptx457

HTML

<div id='log'></div>

CSS

.test {
  width: 500px;
  height: 500px;
  position: absolute; 
}

JavaScript

$( document ).mousemove(function(event) {
  $( "#log" ).text( "pageX: " + event.pageX + ", pageY: " + event.pageY );
});