IE and Firefox feature request: download visible images first
April 12, 2005 2:09 PM
If you click on a photo caption my site brings you to photo album and jumps you to the image for that caption, scrolling the page to the right image if necessary. (Example)
The disappointing problem is that you can't see that particular image until Internet Explorer or Firefox download all images on the page that happen to be in the HTML before that image. This happens even though all of the images before the image you are trying to look at are off the screen. This means that you have to sit there and wait for all preceding images to load before you get to see the one right on your screen.
The fix seems simple: IE and Firefox should load images that are viewable to the user first, and then load off-screen images.
I can probably fix this via some fancy JavaScript, but it seems like more work than should be necessary.
Comments
Related Posts
Category: Ideas
- Problems with Web 2.0, and how to fix them for Web 3.0 March 29, 2006 5:08:00 PM
- Automatic Bull-Sh*t detector extension for email, blogs, and browsers March 3, 2006 4:55:00 PM
- Shift-click needs more power April 12, 2005 12:25:00 AM
- Fun ways to do your taxes April 6, 2005 7:59:00 PM
- 32 more in Ideas...
Category: AJAX
- Mix 06 - Watch it now for free March 20, 2006 2:07:00 PM
- DC 2.0 on March 15th in Reston March 14, 2006 5:05:00 PM
- MSN Virtual Earth to take on Google Maps May 24, 2005 11:59:00 AM
Category: Web Design
- DC 2.0 on March 15th in Reston March 14, 2006 5:05:00 PM
- Dell is shooting themselves in the foot with too many choices August 11, 2005 3:44:00 PM
- Tag clouds aren't cool anymore? April 20, 2005 1:24:00 AM
Posted April 14, 2005 12:49 PM
This is obviously done for performance. Consider a large html document. The first part is , the HTML parser is going to kick off a thread to download that image while the main thread continues to download and parse the remaining content. It has no idea where your #link is in the document.
http://www.dylangreene.com
Posted April 14, 2005 2:43 PM
Good point Asher - thanks!
http://www.more-milf.com
Posted April 15, 2005 7:15 AM
Hi, haven't posted long time :)
Well its not Java Script it's more of C++ or Visual Basic and OS mechanics, it has to check what pixels you're viewing and i can say that it's not an easy task.
First of all you need to have all images on html page with width and height variables set so the page viewer (IE or Firefox) will now the exact placement of the graphic elements, then you can check by the right scroll back wich elements you are viewing and decide then to load them first.
It's a great feature i can say, never thought of it, but i can recall many times when i was getting pissed about slow loading pages (mostly graphical) and when it all loaded the page was scrolling damn slow. I wonder if it will be implemented.