$(document).ready(function(){
setTimeout(function(){
var testElem = $(".test-container");
if(testElem.length){
testElem.removeClass("loaded");
}
}, 0);
});
.test-container{
padding: 200px 0;
height: 1000px;
background-image: url("../images/test-img.png");
&.loaded{
background: none;
}
}