I am using a get to load content to a div and then show it. Works great, very easy.
$.get($(this).attr("href"), function (data) {
$('#boardData').html(data);
$('#boardContent').show();
$('#BoardImages a').lightBox();
});
I would like to only show the div, my $('#boardContent').show();
, once all of the images have loaded from my data that I got via my get.