Skip to content

Instantly share code, notes, and snippets.

@bjoerntx
Created April 3, 2023 17:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bjoerntx/cf7ec3b0c9e31d7ae35704d7898c6eb2 to your computer and use it in GitHub Desktop.
Save bjoerntx/cf7ec3b0c9e31d7ae35704d7898c6eb2 to your computer and use it in GitHub Desktop.
document.querySelectorAll(".drag")
.forEach((function (x) {
x.setAttribute("draggable", true);
x.addEventListener("dragstart", function (event) { drag(event); });
}))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment