Skip to content Skip to sidebar Skip to footer

Dropzone.js Inside Modal Does Not Work

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 modal inc

Solution 1:

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
});

Post a Comment for "Dropzone.js Inside Modal Does Not Work"