jquery - How to get dropzone new file name -


i upload images via dropzone automatically , rename them during upload. need new filenames can send database.

i have tried this, keeps giving error:

unexpected end of input

dropzone.options.mydropzone = {     success: function( file, response ){        obj = json.parse(response);     }, } 

nevermind got solution, tried instead

 success: function( file, response ){     console.log(response); }, 

Comments

Popular posts from this blog

javascript - Bootstrap Popover: iOS Safari strange behaviour -

Website Login Issue developed in magento -

Can the constants be defined inside a model file of a framework in PHP? -