Is there a way to load some images first, then (or meanwhile) others?
Here the HTML structure, I want all first images start to loading on the first time, order doesn't matter, when the image loaded doesn't matter (first image can be loaded after other images due to big size)
<ul>
<li><img /></li> <!--first image-->
<li><img /></li>
<li><img /></li>
</ul>
<ul>
<li><img /></li> <!--first image-->
<li><img /></li>
<li><img /></li>
</ul>
<ul>
<li><img /></li> <!--first image-->
<li><img /></li>
<li><img /></li>
</ul>
<ul>
<li><img /></li> <!--first image-->
<li><img /></li>
<li><img /></li>
</ul>
...