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?
We can simply disable it as follows:
$("#fileupload").fileupload({ pasteZone: null //make it $(document) or specific container for enabling it })