Jquery fileuploader - disable download on insert - 'fileuploadpaste' - How?

When even I insert any image (for example, into an input text box), it is loaded by the jquery file loader.
So how to stop this?

On the options page ( https://github.com/blueimp/jQuery-File-Upload/wiki/Options ), the event that fires after insertion is "fileuploadpaste".

The usual jquery event that fires after text insertion is "textInput".

So how to disable this download?

+6
source share
1 answer

We can simply disable it as follows:

$("#fileupload").fileupload({ pasteZone: null //make it $(document) or specific container for enabling it }) 
+11
source

All Articles