


How can I display a running progress bar during page load using XMLHttpRequest events?
Displaying a Running Progress Bar During Page Load
To show a running progress bar while a page is loading, a different approach from displaying a static loading image is required. This can be achieved by utilizing the progress events provided by the XMLHttpRequest (XHR) object.
In the JavaScript code provided in the question, the window.load() event listener is used to hide the loading image once the page has finished loading. To implement a progress bar, we can utilize the progress events of the XHR object instead.
The following code snippet demonstrates how to use XHR progress events to display a running progress bar:
<code class="js">$.ajax({ xhr: function() { var xhr = new window.XMLHttpRequest(); // Upload progress xhr.upload.addEventListener("progress", function(evt) { if (evt.lengthComputable) { var percentComplete = evt.loaded / evt.total; // Update the progress bar here console.log(percentComplete); } }, false); // Download progress xhr.addEventListener("progress", function(evt) { if (evt.lengthComputable) { var percentComplete = evt.loaded / evt.total; // Update the progress bar here console.log(percentComplete); } }, false); return xhr; }, type: 'POST', url: "/", data: {}, success: function(data) { // Do something success-ish } });</code>
This code sets up an XHR request with progress event listeners for both upload and download progress. When the progress of either the upload or download changes, the event listener will be triggered and you can update your progress bar accordingly.
The console.log() statements in the code are for demonstration purposes. You can replace them with your own code that updates the progress bar's appearance based on the percentComplete value.
The above is the detailed content of How can I display a running progress bar during page load using XMLHttpRequest events?. For more information, please follow other related articles on the PHP Chinese website!

I think the :placeholder-shown selector is tremendously cool. It allows you to select the placeholder of an input () when that placeholder is present.

Here’s the trick: by combining the Turkish letter "ı" and the period "." we can create something that looks like the letter "i," but is made from two separate

In this week's roundup: "Add to home screen" has different meanings in Android, Chrome and Edge add some pop to focus rectangles on form inputs, and how

Who loves charts? Everyone, right? There are lots of ways to create them, including a number of libraries. There’s D3.js, Chart.js, amCharts, Highcharts, and

Third-party cookies are set on your computer from domains other than the one that you're actually on right now. For example, if I log into css-tricks.com,

At a recent conference talk (sorry, I forget which one), there was a quick example of poor web performance in the form of a third-party widget. The example

WebPageTest is an online tool and an Open Source project to help developers audit the performance of their websites. As a Web Performance Evangelist at

Say you have page that has a bunch of transitions and animations on all sorts of elements. Some of them get triggered when the window is resized because they


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Dreamweaver CS6
Visual web development tools

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

SublimeText3 Linux new version
SublimeText3 Linux latest version

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

WebStorm Mac version
Useful JavaScript development tools