In most common web browsers, are the images displayed using <image> tags loaded by asynchronous requests?
In most common web browsers, are the images displayed using <image> tags loaded by
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
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.
Modern browsers can reflow the page, so they will load the images asynchronously.
Way back some browsers (like Netscape 4) could not reflow the page, so they would have to wait until they knew the size of each image until they could render the rest of the page. If you specified the width and height in each image tag they could load all images asynchronously, otherwise they had to load enough of each image to determine the size before they could continue to render the page.