I've tried creating a preloader which worked perfectly in local machine. But, on hosting the content online, the preloader never fades out. Please help. Here are the essentials : CSS, JS, Body
#loader {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #0f2338;
z-index: 99;
height: 100%;
}
#status {
width: 200px;
height: 200px;
position: absolute;
left: 50%;
top: 50%;
background-image: url("../png/Ball.gif");
background-repeat: no-repeat;
background-position: center;
margin: -100px 0 0 -100px;
}
<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
script type="text/javascript">
<script type="text/javascript">
$(window).load(function() {
$("#status").fadeOut("slow");
$("#loader").delay(500).fadeOut();
});
</script>
<body>
<div id="loader">
<div id="status"></div>
</div>