Is there a way to set the priority of uploading images to a site?

Possible duplicate:
Control image upload order in HTML

Is there a way to set the upload priority or image upload sequence on a website?

+6
source share
1 answer

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.

0
source

Source: https://habr.com/ru/post/913850/


All Articles