By using the custom function (loadContent) below I have run into a snag. If I visit the work page (URL below) it waits to load images then hides the overlay (which is great!). If I leave the work page (visit a project) and then revisit the work page later it no longer works. Firebug shows on the second page visit everything is loaded properly but the overlay never goes away. Something appears to be hanging prior to the hideOverlay(); function gets executed if the loadContent(); function has been previously ran for that respected page.
The current WIP can be found at [edit: URL has been removed]
My load Function
function loadContent(link) {
var loadUrl = $(link).attr("href");
showOverlay(function () {
$('#holder').load(loadUrl, function () {
var imgcount = $('#holder img').length;
$('#holder img').load(function () {
imgcount--; if (imgcount == 0) {
$('#content').scrollTop(0);
hideOverlay();
};
});
})
});
}
The overlay Functions
function showOverlay(callback) {
$('html').addClass('overlay-visible');
$('#overlay').fadeIn(500, callback);
};
function hideOverlay(callback) {
$('html').removeClass('overlay-visible');
$('#overlay').delay(100).fadeOut(500, callback);
};
Thanks in advance to anyone that can help me with this!