Menü schliessen
Created: March 26th 2025
Last updated: March 26th 2025
Categories: Common Web Development,  IT Development,  JavaScript Development
Author: Aleksandar Pantic

Vanilla JavaScript Drag & Drop Tutorial – No Libraries Needed

Tags:  js
Donation Section: Background
Monero Badge: QR-Code
Monero Badge: Logo Icon Donate with Monero Badge: Logo Text
82uymVXLkvVbB4c4JpTd1tYm1yj1cKPKR2wqmw3XF8YXKTmY7JrTriP4pVwp2EJYBnCFdXhLq4zfFA6ic7VAWCFX5wfQbCC

Vanilla JavaScript Drag & Drop: A Complete Guide

Drag and drop functionality is essential for modern web applications. While many developers reach for libraries, modern browsers provide a powerful native Drag & Drop API. Let's explore how to use it effectively.

Core Concepts

To implement drag and drop, you need to understand three key components:

  1. The draggable attribute - Makes any HTML element draggable
  2. Drag events - Handle different stages of the drag operation
  3. The DataTransfer object - Stores and transfers data during dragging

Basic Implementation

Here's a simple drag and drop example between two div elements:

<div id="drag-item" draggable="true">Drag me</div>
<div id="drop-zone">Drop here</div>

<script>
  const dragItem = document.getElementById('drag-item');
  const dropZone = document.getElementById('drop-zone');

  // Setup drag events
  dragItem.addEventListener('dragstart', (e) => {
    e.dataTransfer.setData('text/plain', 'Dragged item');
    e.target.style.opacity = '0.5';
  });

  dropZone.addEventListener('dragover', (e) => {
    e.preventDefault();
    e.target.style.border = '2px dashed #4CAF50';
  });

  dropZone.addEventListener('drop', (e) => {
    e.preventDefault();
    const data = e.dataTransfer.getData('text/plain');
    e.target.textContent = `Dropped: ${data}`;
    e.target.style.border = '2px solid #4CAF50';
  });

  dragItem.addEventListener('dragend', () => {
    dragItem.style.opacity = '1';
  });
</script>

Practical Example: File Uploader

Let's create a more practical file uploader with drag and drop:

<div id="file-drop-area">
  <p>Drop files here</p>
  <ul id="file-list"></ul>
</div>

<script>
  const dropArea = document.getElementById('file-drop-area');
  const fileList = document.getElementById('file-list');

  // Prevent default drag behaviors
  ['dragenter', 'dragover', 'dragleave', 'drop'].forEach(eventName => {
    dropArea.addEventListener(eventName, preventDefaults, false);
  });

  function preventDefaults(e) {
    e.preventDefault();
    e.stopPropagation();
  }

  // Highlight drop area when item is dragged over it
  ['dragenter', 'dragover'].forEach(eventName => {
    dropArea.addEventListener(eventName, highlight, false);
  });

  ['dragleave', 'drop'].forEach(eventName => {
    dropArea.addEventListener(eventName, unhighlight, false);
  });

  function highlight() {
    dropArea.classList.add('highlight');
  }

  function unhighlight() {
    dropArea.classList.remove('highlight');
  }

  // Handle dropped files
  dropArea.addEventListener('drop', handleDrop, false);

  function handleDrop(e) {
    const dt = e.dataTransfer;
    const files = dt.files;
    
    [...files].forEach(file => {
      const listItem = document.createElement('li');
      listItem.textContent = `${file.name} (${(file.size/1024).toFixed(2)} KB)`;
      fileList.appendChild(listItem);
    });
  }
</script>

Best Practices

  • Always prevent default behavior in dragover and drop events
  • Provide visual feedback during drag operations
  • Consider accessibility by adding keyboard alternatives
  • For complex applications, combine with other APIs like FileReader

Browser Support

The Drag & Drop API works in all modern browsers, including:

  • Chrome (all versions)
  • Firefox (version 3.5+)
  • Safari (version 3.1+)
  • Edge (all versions)

Conclusion

The native Drag & Drop API provides a lightweight way to implement interactive features without external libraries. While it has some limitations (particularly on mobile devices), it's perfect for many desktop web applications. By mastering these techniques, you can create more engaging user experiences with pure JavaScript.