Tagged Questions
0
votes
1answer
30 views
Using Javascript to add custom http header and trigger file download
I would like to start a simple file download through the browser, however an access token must be passed with a custom HTTP header:
GET https://my.site.com/some/file
Authorization: access_token
How ...
1
vote
2answers
32 views
Local FileSharing via a Web Interface
We have a document management system where users upload documents via a web page and we keep track of the files on our server in the cloud. Some users would like to store their files on a local file ...
1
vote
1answer
43 views
How to get a web browser to download a file that is stored in a JavaScript String?
I've been able to write JavaScript to cause the browser to download a file from a remote server using code like this:
var iframe = document.createElement("iframe");
iframe.style.display = "none";
...
0
votes
0answers
61 views
unknown file name change when file downloads
am using a script to download files from my site.
if (isset($_GET['file'])){
$file = $_GET['file'];
$query = "SELECT fileurl FROM dbname WHERE id='$file'";
$result = mysql_query($query);
...
0
votes
1answer
28 views
Make browser show list of downloaded files?
Users that download a file from a web site will sometimes have a problem locating the downloaded file. Each browser has its own way to show the download progress and the list of recently downloded ...
0
votes
0answers
39 views
iphone safari new tab issue
I am making a website in which I am using jquery file download
It opens a new tab in case of ios to render/download the file (in my case PDF) and gives the control back to current tab. This works ...
3
votes
1answer
205 views
Error downloading
to download a console returns the following error:
Frame load interrupted by policy change
Example:
<a href="app.exe">Start Download</a>
Console Preview:
Should I configure ...
0
votes
0answers
73 views
JavaScript to monitor multiple files downloading
I need to adapt this demo to download multiple bin files, instead of only one. I tried it in several different ways, but without success. I found a resource and I adapted the code in this way:
...
2
votes
1answer
753 views
Download files like mega.co.nz
Today i checked mega.co.nz and i'm excited about some features.
for example in download page it will download files on browser and after that decrypt them with javascript.
for example see this link ...
0
votes
0answers
15 views
About the robustness of this method of opening simple (text, etc.) files created on-the-fly
I'm creating a web page that I can command in such a way that it gives me a dump of all the relevant state of variables at run time so I can debug it.
I have thought about a mechanism in which I ...
1
vote
0answers
30 views
Can a link to download media file be streamed on for the video
Hey there i have some url's from external site that returns some media file as download.
The response is media file as an attachment.
I am trying to stream from this link in my site i am doing to ...
0
votes
1answer
62 views
Force download is not working
I want to prompt a download for a user when they click a link instead of open it in the browser.
with expressJS, it should be just like this :
app.get('/download', function (req, res) {
...
0
votes
0answers
77 views
Skip download dialog box in IE using javascript or jQuery
I need to open a document on click on a button.
For that I use window.open() method. All work well when a document type is JPEG, DOC, TIFF etc.
When document type is MSG file (Outlook mail) or any ...
0
votes
1answer
189 views
Download a file in hidden iframe: Android equivalent in Comet context?
I am currently using the following JS code to trigger a file download without leaving the page I'm on:
var iframe = document.createElement('iframe');
iframe.style.display = 'none';
...
0
votes
1answer
271 views
Javascript iFrame add to download file in IE7 and IE8
I need to download file after ajax request. So I add iframe to a page that posts some data to webmethod and get's file. Here is javascript code what is located at button click handler:
var iframe = ...
0
votes
0answers
185 views
Can't load Js file - Error 103 : connection aborted
In this website :
http://www.deadcertain.co.uk/products/subcat/swimming/
The files : dropdown.js and jquery.hoverIntent.minified.js
don't load when I open the website in my browser, When I try to ...
-2
votes
3answers
38 views
why do javascript libraries just link to text page when you attempt to DOWNLOAD them [closed]
I seem to be seeing many javascript libraries that, when you select their DOWNLOAD option, they actually direct me to an webpage with the js written as text.
I have to then copy/paste into my own ...
0
votes
0answers
67 views
Microsoft Word download from web server issue
I am trying to troubleshoot the following issue. A client tried to download a word document and is getting the following error.
Your organization's policies are preventing us from completing this ...
2
votes
1answer
382 views
Download a PDF using PhoneGap to be viewed offline?
I'm developing an iPhone app where the user can download files (.pdf, .docx etc) using PhoneGap and HTML in Xcode and then either view them 'Online' (where essentially the user views the files from ...
1
vote
1answer
309 views
file download popup box using javascript
I am working on ASP.NET web form application.
I am processing file at server side in my web service code.
This web method will return me file memory stream.
I would like to consume this memory stream ...
1
vote
0answers
115 views
Show Message After a File has Downloaded in a New Window
The user fills in a form to download a file. The form results load in a new window (target="blank"). The MVC Controller Action returns a FileResult on success or my "SelfClosingPage" view on failure.
...
0
votes
1answer
328 views
How to display download file popup (not a new window)?
I try to display "save as" popup on IE using javascript (jquery is ok too).
The expected result is:
I use this code:
window.open("some url on my server", "_self");
and I get:
How can I make it ...
1
vote
0answers
81 views
Javascript to ignore download prompt
I'm trying to set up some Javascript with a basic HTML page so that when something is attempted to be downloaded, it is done automatically with no prompt what-so-ever.
I have the Javascript linked in ...
0
votes
1answer
89 views
Downloading and merging multipart file in javascript
I need some help with below requirement.
Download huge multipart csv file from webserver and join those parts at client side before opening it for user.
I can get the number of parts and have their ...
0
votes
1answer
61 views
Downloading files via POST
I'm interfacing a WCS service and have to send HTTP POST requests with XML to the server to retrieve (binary) raster files.
I managed to download the file with a jQuery ajax, but I cannot save the ...
0
votes
2answers
201 views
download string object content as plain text file with Mozilla Firefox extension
In my FF extension I create an object (a string) retrieving data from the DOM.
Now I need to download a plain text file with the string content. The result should be a CSV file.
I read about ...
0
votes
0answers
60 views
Trouble using File Download in PhoneGap
I'm relatively new to iPhone development using PhoneGap and Xcode, and was looking online for how to download files from an app using FileTransfer. I found a site ...
0
votes
2answers
57 views
Automatic download launch
Is there any other way to launch an automatic download. Currently we do it this way.
If download does not start click here:
<a href="http://www.example.com/file.zip">Filename (121 ...
2
votes
2answers
700 views
Why threre is no way to download file using ajax request?
In our application we need to implement following scenario:
A request is send from client
Server handles the request and generates file
Server returns file in response
Client browser displays file ...
1
vote
1answer
204 views
pdf file download in zip file in MVC 4
I'm working on MVC 4 project. I want to download multiple pdf file in a zip folder. This pdf file are dynamic generated in model popup and select pdf file via check box, after that I clicked on button ...
2
votes
2answers
862 views
Error handling when downloading file from ASP.NET Web Handler (.ashx)
I have a web page which a user can download a PDF file via an ASP.NET web handler (.ashx). It is implemented like the answer in this question. The problem I have is when I do do this ...
0
votes
0answers
117 views
Transform Lightbox 'Close' button into Download button
I'm using the lightbox2 javascript on my webpage, but I'd like to know if there is a way to transform the close button into a download button. The reason I don't use title="<a ...
0
votes
0answers
100 views
Inserting Headers into a Data URI?
I'm trying to dynamically create data in JavaScript that downloads with a .csv extension, but am unable to associate a filename with the download. Here's a code snippet:
var data = '1,2,3';
...
1
vote
2answers
322 views
Downloading a file in the server with javascript
I have an ASP.NET web application. At some step I create a text file and store it in a folder on the server. I do this on the server code. But then just after getting done with creating the file I ...
1
vote
1answer
316 views
Automated file download using Javascript & onSubmit
I am trying to create an automatic file download when a visitor submits a validated opt-in form. I would like to initiate the download using a javascript function as an onsubmit() event. Here is the ...
1
vote
1answer
110 views
force download with hidden form not working
I am trying to force download a file with a javascript string called 'Proof'. I created a hidden form that triggers an action from a php script. The reason I am not using window.location.href is ...
2
votes
2answers
225 views
ajax/php file download not working?
I am trying to force download a txt file upon clicking on a button. The content is dynamically generated and is stored in a javascript variable. The download window doesn't appear when clicking the ...
1
vote
2answers
270 views
Download files on a website with Javascript using iOS
I'm trying to download a file programmly on this site, and I found that when you click the highlighted download button("下载"), it runs a Javascript: ...
0
votes
2answers
777 views
Javascript to simulate “right click on image -> save image as”
OK, there has been an extact duplicate question as this one, but it's been 2 years away, and there's only one answer which was not really a solution.
So, I have an image (thumbnail), right below it ...
1
vote
1answer
265 views
How to download file from javascript
I'm trying to make my Download function popup with the file to download, it is outputting the binary of the file to the div when i click the link, how can i make it so that when i click the link, it ...
0
votes
1answer
19 views
Set downloading windows position
When we click on a link, some links may prompt us to select open with or save options. Can we set the position of this popup in javascript or jsp?
2
votes
2answers
435 views
AJAX File Download with custom header
I want to send request to a URL which provides me file download dialog box. At the same time the server needs certain parameters in request header. So i want to insert a custom header in the request ...
0
votes
0answers
174 views
Downloading a file on page load without interrupting request
I'm working on a application that allows users to download files but may require the page to be refreshed directly afterwards or require a redirect to log in first.
I tried adding the javascript ...
6
votes
1answer
263 views
File download option using clientside script within client system
We are currently working on giving download option to the users to download MP3 files.
We are developing an application that fully execute in local system that no server is required.
But downloading ...
0
votes
2answers
78 views
Adding external scripts in DOM from javascript code
I have included 3 external js files at the end of body.
Suppose my document already contains a js named as insertlibs.js and here is the code
var script1 = document.createElement('script');
...
1
vote
2answers
487 views
Download file from jquery/javascript
I have a java script file in which a variable has some string like:
var xw = 'Some content';
I want to download this string as a file. How to do this in JQuery/javascript? I don't want to send any ...
0
votes
2answers
135 views
Load download in browser background, tell when finished
I'm trying to get a file which takes a good few seconds to load in the background, so I can display a spinner at the same time.
I'm currently trying with an iframe in the background, and this works ...
0
votes
1answer
906 views
How to save file from textarea in Javascript with a name? [duplicate]
Possible Duplicate:
Using HTML5/Javascript to generate and save a file
I want a client side HTML/JS solution to solve this problem - I have a user-edittable textarea A, a textfield B and a ...
0
votes
0answers
25 views
Format not found for this Jetform
I'm getting
"Format not found for this Jetform"
when I tried to download a PDF. I don't have any idea about this error. I goolged it but I didn't get any clue. could you folks help me? Thanks in ...
0
votes
2answers
175 views
Download file generated on the fly using POST data
I need to generate a PDF file using some data I get from a POST request. As response to this request, I want to send the generated PDF file, for which the user should get a "save file as"-dialog.
...




