Load Order?

  • Thread starter Thread starter Don
  • Start date Start date
D

Don

Is there a way to organize how things load onto a web page?
Specifically, I have a 60 sec clip of music, in MP format. What happens now
is the page graphics load and then the music loads. Some people may not
hear the music because they didn't give it time to load.
Is there a way that I can get the music to be the first thing that loads on
the page or at least make it loads before the page is completely loaded?
Thanks,
Don............
 
Things are fetched from the server in the order in which they are listed in
the page's code from <html> to </html>. They arrive at the local browser,
hence appear on your page, in an order dependent on their size (weight), and
net congestion. Combine all of those factors and you get "No".
 
Back
Top