Linked Questions
47 questions linked to/from File upload progress bar with jQuery
0 votes
1 answer
6k views
simple progress 'bar' for image upload -- immediately at 100% [duplicate]
I am trying to add a simple progress bar/number to my PHP image upload. If javascript is enabled, this script shall work, but now, it immediatly shows 100%, before everything has been uploaded, and ...
0 votes
0 answers
574 views
How to display progress percentage on ajax upload form? [duplicate]
I am trying to display progress indicator with my ajax file upload form. Upload is working fine. I tried to integrate progress indicator using various sources, but nothing worked. Here is my ajax code ...
1 vote
0 answers
143 views
Uploading files Ajax/Php and knowing how many mb are uploaded in real time [duplicate]
I'm trying to know how many MB are uploaded on my server and I don't really know how to do it. I send my files with a DataForm. The Javascript : <script> var fichier = document....
-1 votes
2 answers
103 views
uploading file to server using php and html [duplicate]
i have a problem with uploading file to the server im using php my code works fine and sure its fast because im uploading it to localhost but how can i create a progress bar something that will update ...
3163 votes
34 answers
1.5m views
How can I upload files asynchronously with jQuery?
I would like to upload a file asynchronously with jQuery. $(document).ready(function () { $("#uploadbutton").click(function () { var filename = $("#file").val(); $.ajax({...
575 votes
8 answers
1.1m views
How to send FormData objects with Ajax-requests in jQuery? [duplicate]
The XMLHttpRequest Level 2 standard (still a working draft) defines the FormData interface. This interface enables appending File objects to XHR-requests (Ajax-requests). Btw, this is a new feature - ...
10 votes
1 answer
45k views
Upload multiple image using AJAX, PHP and jQuery
I have a lot of problem to upload multiple images using AJAX. I write this code: HTML <form id="upload" method="post" enctype="multipart/form-data"> <div id="drop" class="drop-area"> ...
2 votes
4 answers
9k views
Ajax form upload progress bar
Trying to make a progress bar for a form upload (old HTML4 form upload, not new HTML5 API). The progress actually tracks additional work being done after the file has moved. The way it has been ...
6 votes
1 answer
10k views
How to upload a file and show progress bar in Django?
I have written code to upload a file in Django as follows: def upload(request): if request.method == 'POST': form = UploadFileForm(request.POST, request.FILES) if form.is_valid(): ...
0 votes
2 answers
6k views
how to get progress with % for uploading file using jquery or ajax
I am uploading files I want to get progress length using jquery we are getting default progress in bottom in chrome browser or other browsers so I want get that progress using jquery or ajax and ...
2 votes
2 answers
2k views
How can I add a client-side progress listener to a JSF 2.2 ajax request?
I am trying to add a client side progress bar to JSF2.2 ajax requests. What I would ideally like to do is get the request header size and receive updates for the status of the POST. I do not ...
0 votes
1 answer
5k views
Using jQuery AJAX and PHP to create a progress bar for file uploading
First off I want everyone to understand I did look at all of the other examples on stackoverflow, but none have worked for me at all. What I want to do is create a progress bar which shows the how ...
0 votes
1 answer
6k views
Add Progress Bar with Progress to File Upload
I am redesigning an app and I am trying to get a bootstrap progress bar to show the percentage of the upload progress instead of the gif that just says "please wait". I think I need to add an Event ...
1 vote
2 answers
5k views
php file upload with a progressbar or number of percent
I want to use a file upload progress. Can anybody give possible simple code for showing upload progess bar. On the next code. There is file receiving file upload.php <?php if ($_FILES) { ...
2 votes
3 answers
2k views
Prevent a user to leave page while a file is uploading
I want to prevent a user from leaving my site while their file is being uploaded to my server. So I can send an alert message to a user using this javascript... window.onbeforeunload = function() { ...