This plugin manages file uploads in a webpage and can add a lot of UI elements to the upload process.
You create an input file type element and then strap the js files, use the instantiating code and walla. There are options and API instructions for accomplishing different features.
Problem:
I want to implement a progress bar for file uploads but so far there is no real instruction on how to do that in the docs.
I found one option you can set by pasting this code in:
progress: function (e, data) {
var progress = parseInt(data.loaded / data.total * 100, 10); }
But doing that it has not changed anything. Can someone who understands javascript please help me find out how to get a progress bar implemented?
Thank you.