I have a placeholder background image that i want to replace after its loaded.
$.get("BIG-IMAGE-URL").done(function(data){
$('.MY-DIV-CLASS').css('background-image', 'url("BIG-IMAGE-URL")');
});
Does anyone know how to make a simple function like this?