JSFiddle - React, Tailwind, and code Playground
by tonyleeper
JavaScript
/**
removing this event handler fixes the onmouseup outside the window when in an iframe!
*/
$(document).on("mousedown", function () {
return false;
});
$(document).on("mouseup", function () {
alert("mouse up!");
});