I\'ve got a DropZone form working perfectly with one exception, I can\'t seem to limit the file types as precisely as I need to.
Using acceptedFiles: \"image/*\"<
acceptedFiles: \"image/*\"<
More trial and error eventually turned up the solution:
Dropzone.options.dzone = { acceptedFiles: "image/jpeg,image/png,image/gif" }
Apparently my error was primarily in using jpg which made it all fail. The above works like a charm.