Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm fetching dynamic images from a server with javascript, setting the src attribute of img tags. I prefetch the images by creating img tags that aren't visible, waiting for all the load events, then setting the src on the visible img tags.

This works great for a smooth update of all images, and works reliably on all browsers except firefox. Firefox will, very occasionally, paint only part of an image. The rest of the img element is left blank. The new image is fully loaded in cache: anything that triggers a re-paint will cause the whole image to appear w/o another request to the server. We've seen this with multiple versions of ff.

Anyone know 1) how we're triggering this, or 2) how to work around it?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.