Skip to content

Instantly share code, notes, and snippets.

@WilliamTomOBrien
WilliamTomOBrien / drag-and-drop.html
Last active May 13, 2024 20:08
HTML Drag and Drop Example
<!DOCTYPE HTML>
<html>
<head>
<script>
const events = [];
function allowDrop(ev) {
ev.preventDefault();
}
function dragStart(ev) {