0
I applied a preloader to a website but he "won’t hang up" so to speak.
$(window).on('load', function () {
$('#preloader .inner').fadeOut();
$('#preloader').delay(350).fadeOut('slow');
$('body').delay(350).css({'overflow': 'visible'});
});
<div id="preloader">
<div class="inner">
<div class="bolas">
<div></div>
<div></div>
<div></div>
</div>
</div>
</div>
An error that appears is:
preloader.js:2 Uncaught Referenceerror: $ is not defined prelat.js:2
Thank you very much! Solved the problem.
– Lucas Mikó