I have this script to load some images after page loading is complete I want to know how I can show a loader text or small gif icon while images are loading.
$(function () {
$(".product-image-holder").each(function () {
$(this).attr('src', $(this).attr("alt"));
});
});
You have to show / hide the loader yourself.
For each image a different loader
1 loader for all images