jquery.fileDownload icon indicating copy to clipboard operation
jquery.fileDownload copied to clipboard

jQuery File Download is a cross server platform compatible jQuery plugin that allows for an Ajax-like file download experience that isn’t normally possible using the web.

Results 75 jquery.fileDownload issues
Sort by recently updated
recently updated
newest added

## HELP Hi! First congratulations for this excellent jQuery plugin. I have a doubt. I appreciate if you can help me. How do I get the successCallback function to be...

I am missing the files selected in an `` element. Sending the form regularly, send the files and i can access them in my python flask server via `request.files.getlist('file')`. This...

The cookie goes in the response header, but the frame never get it. ![image](https://user-images.githubusercontent.com/3822009/133492333-6ea65f90-f6ad-4f8c-81b6-4ff027aadb35.png) So the DONE event never fires.

Hi there, I added jQuery.fileDownload to my code yesterday. While it works, there are two issues which I encountered, one of them is this. I noticed that there are several...

We have experienced that, at least on iOS 14 Safari, as the window.open mechanism is used, a new browser session is started, and that breaks our download, since we require...

Hello I have Datatable button which calls this function: ``` function download(url, data, method, mime, type) { $.fileDownload(url, { httpMethod: method, dataType:type, contentType:mime, data: data, preparingMessageHtml: "We are preparing your...

The filedownload cookie needs to be modified to work with coming changes to Chrome. > A cookie associated with a resource at http://google.com/ was set with SameSite=None but without Secure....

The plugin doesn't take into account Chrome on iOS. It should check for user agent CriOS to prevent errors for download initiated by non GET requests.

.submit is deprecated in jquery 3.3 - convert to .trigger('submit') to eliminate JQMigrate warnings. `/** * Bind an event handler to the "submit" JavaScript event, or trigger that event on...

This is my code in my MVC C# project. ResponseHtml is always empty on IE11 browser ``` try { var disposition = new System.Net.Mime.ContentDisposition { FileName = "Test", Inline =...