Giter Club home page Giter Club logo

drops.js's Introduction

Drops.js โ€“ Multiple file upload with drag and drop

Drops.js is a small utility library for performing multiple file upload over ajax using drag and drop. It works in browsers that support XHR progress events, FormData and FileReader, with no fallback mechanisms.

Usage

/*
 * Create a new dropzone for uploading files.
 *
 * @selector: The DOM file drop zone. Must be present in the DOM when drops() is called.
 * @options: An object with parameters, modifiers and callbacks (see below).
 */
drops(selector, options);

Options

Parameters:

  • url: The server address that receives the upload (default "/").
  • field: The name of the file field in each request (default "file").
  • method: The HTTP method for each upload (default "POST").
  • accept: The expected return type from the server (default "text").

Modifiers:

  • formData: Function to augment or change the formData object.
  • xhr: Function to augment or change the XHR object.

Upload callbacks:

  • progress: Handler called on progress events, for each file.
  • error: Handler called on errors, for each file.
  • success: Handler called when each file is uploaded.
  • complete: Handler called when all files are uploaded.

Event callbacks:

  • dragenter: Handler called on "dragenter".
  • dragover: Handler called on "dragover".
  • dragexit: Handler called on "dragexit".
  • dragleave: Handler called on "dragleave".
  • dragend: Handler called on "dragend".
  • drop: Handler called on "drop".

License

MIT. See LICENSE.

drops.js's People

Contributors

olav avatar larseliassen avatar

Watchers

James Cloos avatar

Forkers

velfundert

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.