JSFiddle - React, Tailwind, and code Playground

by DaMaus

HTML

<div id="drag" style="width:20px;height:20px;background:red;" draggable="true">
</div>

JavaScript

document.getElementById('drag').addEventListener('drag', (e) => {
console.log(e);
});