Possible duplicate:Control image upload order in HTML
Is there a way to set the upload priority or image upload sequence on a website?
You can use jQuery and try sth. eg:
$(document).ready(function() { var preloaded_image = $('<img />').attr('src', 'img.jpg'); $('#img_div').append(preloaded_image); });
This should result in images loading after the rest of the content.
Source: https://habr.com/ru/post/913850/More articles:Application against cache: blocking mechanism - c #JFreechart ChartPanel not getting Transparenent - javaweird array slice behavior - arraysCreating a Hashi Puzzle - algorithmdoctrig2 autloader with cli should use AnnotationRegistry - command-line-interfaceThe annotations "@Doctrine \ ORM \ Mapping \ Entity" in the class Entities \ USER_User does not exist or cannot be loaded automatically - phpHow to draw GdkPixbuf using GTK3 and PyGObject - pythonstring concatenation? - pythonSegmentation error when drawing a frame from a webcam to DrawableArea in pygtk3 - pythonVoting - Number of votes vs Percentage of votes? - mathAll Articles