<html>
<head>
<script src="dropzone.js"></script>
<body>
<div id="myId" style="text-align:center">Drag and drop files here to upload.</div>
</body>
</html>
<script type="text/javascript">
//var Dropzone = require("dropzone");
var myDropzone = new Dropzone("#myId", { url: "/file/post"});
</script>
<style type="text/css">
#myId{
width: 240px;
height: 240px;
min-width: 400px;
min-height: 280px;
border: 2px dotted #000;
-moz-border-radius: 8px;
}
<head>
<script src="dropzone.js"></script>
<body>
<div id="myId" style="text-align:center">Drag and drop files here to upload.</div>
</body>
</html>
<script type="text/javascript">
//var Dropzone = require("dropzone");
var myDropzone = new Dropzone("#myId", { url: "/file/post"});
</script>
<style type="text/css">
#myId{
width: 240px;
height: 240px;
min-width: 400px;
min-height: 280px;
border: 2px dotted #000;
-moz-border-radius: 8px;
}
</style>
------------------------------------------------------------------------------------------------------------------------------
<html>
<head>
<script src="dropzone.js"></script>
<body>
<form style="border:1px solid red; padding:10px; width:300px ; height :300" action="/file-upload"
class="dropzone"
id="my-awesome-dropzone">
</form>
</body>
</html>
<script type="text/javascript">
//var Dropzone = require("dropzone");
var myDropzone = new Dropzone("div#myId", { url: "/file/post"});
</script>