How do most browsers load files?

  • Thread starter Thread starter telicalbook
  • Start date Start date
T

telicalbook

I have a 500K mostly text html file and I'm wondering if most
browsers will load it and display it in parts or will waitl till the
whole file is displayed until it loads.

Thanks for your help.



--
 
It will be fetched in little parcels. Depending on the markup used it may
be displayed or it may not.

500K is ohh 12 times heavier than the target weight for a page, you know?
 
It will be fetched in little parcels. Depending on the markup used it may
be displayed or it may not.

500K is ohh 12 times heavier than the target weight for a page, you know?

Provided there is something on the screen to be read, the user is
allowed to start reading as soon as the text begins to appear.

With half a meg of text, and we must assume that the text is of
interest to the reader, he is going to be sitting there reading for
quite a long time anyway, so the usual "rules" don't really apply.

Having said that, this would be a splendid opportunity to break the
"page" down into a number of pages, something you could not easily
achieve within the restrictions of a printed document.

fido
 
fido said:
Provided there is something on the screen to be read, the user is
allowed to start reading as soon as the text begins to appear.

Unless it's in a table, in which case some browsers won't render the text in
the table until the </table> tag is encountered, forcing them to wait for
the entire page to load.

To avoid that, just make a short table on top with say... three screens
worth of text and then let the rest load in a second table.

Or maybe, use an actual text file or a PDF file to do the job.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top