$(document).ready(function () {
$(".box2").load("page1.html");
});
$(".box2").ready(function () {
$(".box3").load("page1.html");
});
That's my code, I've got a few boxes all with an image and I want it so when image 1 ( page1.html) is loaded, only then the next one must load and not before the first one is loaded.