I have a with an image slider in an . There are 12 images, and it takes some time to load all of them. While the images load,
with an image slider in an . There are 12 images, and it takes some time to load all of them. While the images load,
if u loading all images via AJAX then use below way
$('#loadingDiv') .hide() // hide it initially .ajaxStart(function() { $(this).show(); }) .ajaxStop(function() { $(this).hide(); }) ;