This demo is by Olli Pettay (smaug) with help from Austin King.
A common limitation on the web today has been a rich file upload widget for web applications. Many sites use Flash or a desktop helper applications to improve the experience of uploading files.
Firefox 3.5 bridges one of these gaps allowing a better progress indicator to be built. Many developers don’t realize that they can use Firefox’s File object (nsIDOMFile) and XMLHttpRequest together to accomplish file uploads. This demo will feature an upload widget that gives the kind of rich progress feedback that users have come to expect, as well as fast and easy multiple simultaneous file uploads.
Progress Indicators
It’s always a good idea to expose feedback that your application is hard at work for them, and when the current action is expected to finish. The two main types of progress feedback are:
- indeterminate progress – some activity just happened
- deterministic progress I’m 40% done, I’m 42% done… etc
Deterministicsaidwhat? The Demo
We’ve created a simple file upload / download page that demonstrates the progress bar:
The demo is host at mozilla.pettay.fi and requires Firefox 3.5 beta4 or later. It demonstrates how to do multiple simultaneous file uploads without posting a form or leaving the current page. For each file upload / download we display the current speed, % complete, and bytes transmitted. We’ll go over a few key snippets of the code which are used in the screenshot above. Please click through the the demo and view source for the full code example.
The page contains two HTML inputs, one type="file" and one type="button". The form is never actually submitted, instead we add an onclick handler to the button:
<input type="file" id="file"> <input type="button" onclick="startXHR();" value="Upload file using XHR">
In the startXHR function, we create an XMLHttpRequest and add an event handler to the XHR request to listen for the new ‘progress’ event. With this ProgressEvent’s lengthComputable property, we will know if we are dealing with an indeterminate or deterministic progress. The object also gives us loaded and total bytes.
var xhr = new XMLHttpRequest(); xhr.onprogress = function(evt) { if (evt.lengthComputable) { evt.target.curLoad = evt.loaded; evt.target.log.parentNode.parentNode.previousSibling.textContent = Number(evt.loaded/k).toFixed() + "/"+ Number(evt.total/k).toFixed() + "kB"; } if (evt.lengthComputable) { var loaded = (evt.loaded / evt.total); if (loaded < 1) { var newW = loaded * width; if (newW < 10) newW = 10; evt.target.log.style.width = newW + "px"; } } };
Now we need some data to send. We grab the contents of the file directly from the input by id:
var files = document.getElementById("file").files; if (files) { var file = files.item(0); xhr.sendAsBinary(file.getAsBinary());
And the last step is to start the request:
xhr.open("POST", "cgi-bin/posthandler.pl"); xhr.overrideMimeType('text/plain; charset=x-user-defined-binary'); xhr.sendAsBinary(file.getAsBinary());
These methods would also work with xhr.upload.onprogress.
Notice the use of the sendAsBinary method on the XMLHttpRequest object and getAsBinary on the File object. Starting with Firefox 3 you’ve been able to get at the contents of a file on the client side without form submission. This is quite useful for moving beyond the limitation of tranditional file input and form submissions. It is also part of an up and coming W3C standard for FileUpload.
A related method that the nsIDOMFile provides is the getAsText method which returns a DOMString suitable for slicing, dicing, and displaying.
Here is an example usage, not used by the demo:
file.getAsText("utf8");
So that’s the gist of the code. Check out the demo and view it’s source.
Feedback In User Interfaces
Exposing system feedback to users improves perceived performance. We
can’t always determine how long something will take, so at a minimum we
can show indeterminate progress.
During file uploads and file downloads (assuming the server gives us Content-Length) we do indeed know the total number of bytes. Firefox 3.5’s Progress Events support adds a progress event so that we can show actual upload/download progress.
Traditionally XMLHttpRequests were difficult to get deterministic progress back from. In theory, you could give it callbacks and watch for status code updates and textual message updates, but in practice they turn out to be not very useful. In the past, if a deterministic progress meter was important, you’d have to make a second XHR request to poll for progress.
Enter Progress Events
The W3C has a working draft for Progress Events 1.0 which we include in Firefox 3.5. Firefox has added a key new DOM ProgressEvent progress event, as well as the loadstart event. The other existing events included: error, abort and load.
These same events are also available for uploads and downloads. The progress event gives us the following properties:
- lengthComputable – true or false, is the size of the request known?
- loaded – number of bytes received so far
- total – number of bytes expected for entire request
The Contract
When you’re looking at the properties of those progress events, certain rules apply that you can depend on. They are:
- The total property will be 0 when lengthComputable is false.
- The loadstart event is always signaled only once.
- The progress event is fired off zero or more times after loadstart.
And that’s it. Go forth and improve file uploads with Firefox 3.5 goodness.



Awesome. Will the FileUpload standard enable this kind of thing for form submissions without the need for scripting?
No, I don’t think so. The FileUpload spec standardizes the file choosing mechanism and API, so that it could be used in non-web browser environments. It’s still needs to be scripted.
What are the security restrictions here? You’ve made it sound as if web site Javascript can read the contents of any file on the local filesystem. I’m sure that isn’t the case, so can you outline what restrictions are in place?
You cannot read a file until the user has chosen one with the file input, so it’s initiated and controlled by the user.
Is there a multi-file-selecting support, too?
Or have you to select each file one bye one?
It looks like you can still only select one file at a time in the select box (using the Fx3.5 beta in Ubuntu Jaunty). But the API looks like it supports having a single file input select multiple files. Will this be supported in 3.5 final?
That’s all very nice, but there’s still something missing: the ability to choose multiple files at once.
@scribu – Yeah, we haven’t added multiple file uploads yet. I think we’re going to try to do that for our next release.
Very cool! I have been wishing this was possible for about 5 years. Cool demo.
Wow, I never knew you could read file contents in 3.0. Awesome. I’m loving h.m.o.
I should read more about XHR! This looks wonderful..
I think much bigger limitation is lack of multi-file select and progress indicator is not that useful with just one file upload.
So please please implement multi-file select.. Opera and Safari already has that
This is really cool – any idea on what other browsers do or will support this?
@schrep – I’m not sure. I know that a lot of this stuff is showing up in the specs and the WK guys are pretty strong on this stuff so I’m sure that time frame will be short.
IE is a different matter but they have picked up some new recent standards in recent versions. I’ll check with Arun to see if he has any feedback.
@schrep: synchronous stuff like *.getAsBinary() won’t have support from other vendors. I’m working on evolving an asynchronous File API (with callbacks). ProgressEvent support, however, will also be supported by other browsers.
Could it be possible to resume uploads? This is an issue when trasferring large (video) files to the server?
Great example, but I’m stuck on one thing. In the wonderful world of Firefox-based web applications, I’ve got a requirement where I am using XHR to POST a zip file which is then processed, resulting in a processed ZIP file being returned.
What should be easy is for me to be able to get a handle on the async result, and to be able to either open that in a new window, or, as would happen in my case, get the download prompt.
One option I have is to cache the resource on the server, and return a 201 + Location: for the cached zip, but that’s not ideal. I’d rather just stream the new zip out without hitting the disk.
Any clues how I can do this?
How would someone post text field data along with the file upload to the same target page? Could you give us PHP code for the receiving page?
I wrote a follow up to this post … including some JavaScript sample code on how to locally store all form data and submit it all at a later point
http://blog.mykita.com/2009/10/enqueue-form-uploads-for-better-usability/