Imperative
How to create a Dropzone upload with JavaScript.
As an alternative to the declarative way, you can create Dropzones imperatively (even on non <form>
elements) by instantiating the Dropzone
class:
Donβt forget to specify an url
option if youβre not using a <form>
element, since Dropzone doesnβt know where to post to without an action attribute. On form elements, Dropzone defaults to the action
attribute.
For a list of all configuration options, refer to the configuration section.
Last updated