.load() の前に「LoaderMain」div を表示し、すべて完了したら「LoaderMain」を非表示にしたいと思います。表示/非表示のコメントを外すと、表示されません。
$('#content').html('');
//$('#LoaderMain').show();
$("#content").load(url, function(response, status, xhr) {
if (status == "error") {
var msg = "Sorry but there was an error: ";
$("#content").html(msg + xhr.status + " " + xhr.statusText);
}
});
//$('#LoaderMain').hide();