Currently, I am loading my libraries in the following way:
<link href="~/lib/dropzone/dropzone.min.css" rel="stylesheet" />
<script src="~/lib/dropzone/dropzone.min.js"></script>
<script src="~/Scripts/jquery-3.3.1.min.js"></script>
For implementing Dropzone, I am using the code snippet below:
var CountFiles = 0;
Dropzone.autoDiscover = false;
jQuery(document).ready(function () {
Dropzone.autoDiscover = false;
$("div#myPrincipalDropzone").dropzone({ ...etc.... even another dropzones...
Previously, this setup was functional, but recently I encountered an issue where it shows 'dropzone is not defined.' Additionally, when I explicitly include the libraries in the Index file, I receive an error stating "'Symbol(Symbol.iterator)' is undefined"
I have attempted adding multiple instances of Dropzone.autoDiscover = false; and also experimenting with different syntax for the functions. Any suggestions?