I have added to my website this loader
$(window).load(function () {
$("#page-preloader").fadeOut(300);
});
which as you can see it fades out after everything of the page is loaded.
I would like to have a loader which fades out right after a class is loaded (i.e. class="myclass")) and not wait for everything to get loaded.
Thank you in advance.