I am using the code below for an image gallery and would like to show a loader gif in the background when images are loading and then remove it once the image is loaded.
What is the best way to do this?
Note: I have attached .fadeIn() and .fadeOut() before with not much luck(it seemed as both were appearing simultaneously.
$('ul a').click(function(e) {
e.preventDefault();
var src = $(this).attr("href");
$('#main-img img').fadeOut(400,
function() {
$('<img/>').attr('src', src).load(function() {
$('#main-img img').attr('src', this.src).fadeIn(400);
})
})
});