Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6942509
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T13:01:40+00:00 2026-05-27T13:01:40+00:00

I have multiple elements I need to load before the user has control over

  • 0

I have multiple elements I need to load before the user has control over the page (mostly images, videos, and audio). Currently, I’m loading them with the $.when() function, like this:

//all elements are hidden, except for a black background and
//a "loading" gif in the middle.

$.when($.ajax("video1.ogv"), $.ajax("video2.ogv"), $.ajax("videoN.ogv"))
.then(function () {
   //show the site with all the content preloaded...
});

Is there any way to create a loading bar that shows the progress (in percentage) of all the elements loading in the background? Like what happens in most flash sites with heavy media, for example: http://www.saizenmedia.com/nightwishsite/

Can it be done purely with jQuery or Javascript?

Thanks in advance!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T13:01:40+00:00Added an answer on May 27, 2026 at 1:01 pm

    You can use the Progress Bar from jQuery UI

    Upon loading of each element simply change the value of the progress bar.

    $.when($.ajax("video1.ogv"))
    .then(function () {
        videoLoaded[1] = true;
        updateProgressBar();
    });
    
    $.when($.ajax("video2.ogv"))
    .then(function () {
        videoLoaded[2] = true;
        updateProgressBar();
    });
    
    $.when($.ajax("video3.ogv"))
    .then(function () {
        videoLoaded[3] = true;
        updateProgressBar();
    });
    
    var updateProgressBar = function() {
        // iterate though the videoLoaded array and find the percentage of completed tasks
        $("#progressbar").progressbar("value", percentage);
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an ASP.NET 3.5 page which has multiple span elements with ID containing
I have multiple elements on a page that have matching classes. The classes are
I need a callback to execute once after multiple elements have finished animating. My
I have multiple video elements on my page. They look like this: <video class=video-js
I have multiple sections... within these sections there are few child elements... I need
I have a XmlString which contains multiple elements with their nodes. ie <Element> <AccountName>My
I have source XMLfiles that come in with multiple root elements and there is
I have a list where elements are hidden for multiple reasons, each corresponding to
I have multiple ajax forms on page that cointain same elemets, I have jquery
I've got this HTML form where I have multiple input elements: text, radio, and

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.