JSFiddle - React, Tailwind, and code Playground

by oroce

JavaScript

$(document).mousedown(function(e) {
    $("body").data("mouse", {
        "pageX": e.pageX,
        "pageY": e.pageY
    });
});

$(document).mouseup(function() {
    var data = $("body").removeData("mouse");
});