Need your help with the preloader for the site. Loader works until the page is fully loaded, but the site has a callback script from a third-party site. This script specifically increases the page loading time and content display up to 30 seconds, and without it 6 seconds. Is it possible to somehow configure the loader script so that the third-party script loads after displaying the content on the page?
<div id="loader-overflow"> <div id="loader3" class="loader-cont">Please enable JS</div> </div> $(window).load(function() { $("body").imagesLoaded(function() { $(".loader-cont").fadeOut(); $("#loader-overflow").delay(200).fadeOut(700); }); });