I just want to hide this div onload but it's not working.
Here is the snippet:
$(window).load(function() {
$('.preloader').fadeOut('slow');
});
.preloader {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 9999;
background-image: url('loading.gif');
background-repeat: no-repeat;
background-color: #8f8f8f;
background-position: center;
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<div class="preloader"></div>