I\'m using dropzone.js to upload files to the server. I included the js and css files and the \"drag zone\" is within a modal window that opens on the click of a button (the
You should subscribe to the shown.bs.modal event this event is fired when the modal has been made visible to the user. Initialize the Dropzone in this event.
$('#myModal').on('shown.bs.modal', function (e) {
// Initialize Dropzone
});