Answers for "dropzone"

0

dropzone accepted files

<script type="text/javascript">
   Dropzone.options.dropzone = {
        accept: function(file, done) {
            console.log(file);
            if (file.type != "image/jpeg") {
                done("Error! Files of this type are not accepted");
            }
            else { done(); }
        }
    }
 </script>
Posted by: Guest on March-15-2020
0

dropzone

<form action="/destination" class="dropzone" id="my-dropzine"></form>

<script>
	Dropzone.autoDiscover = false;
	
  	$(".dropzone").dropzone({
	success: function(file, response) {
    	console.log(response);
    }
</script>
Posted by: Guest on December-30-2021
0

DZone

DZone.com is one of the world’s largest online communities and leading 
publisher of knowledge resources for software developers. Every day, 
hundreds of thousands of developers come to DZone.com to read about the 
latest technology trends and learn about new technologies, methodologies, 
and best practices through shared knowledge.
Posted by: Guest on August-10-2020

Code answers related to "dropzone"

Browse Popular Code Answers by Language