I want the AJAX file loader, for example, to load a Gmail file with a progress bar in PHP

I would like the AJAX file downloader, like the one shown in Gmail, when you upload a file (with a progress bar) written in PHP.

Does anyone have any ideas?

Thank.

+3
source share
4 answers

Many others can be found on Google and on this page.

+2
source

You can dynamically update the JQuery Progress Bar plugin and achieve the same look.

<div id="progressbar"></div>
<script>
  $(document).ready(function() {
    $("#progressbar").progressbar({ value: 1 });
  });
</script>

Then all you have to do is reference the progress bar and its value based on your actual progress:

$( ".selector" ).progressbar( "option", "value", <YOURVALUE>);
0
source

All Articles