Skip to content

Instantly share code, notes, and snippets.

@8lane
Created August 21, 2014 17:34
Show Gist options
  • Select an option

  • Save 8lane/2c7a66bb8553c784158d to your computer and use it in GitHub Desktop.

Select an option

Save 8lane/2c7a66bb8553c784158d to your computer and use it in GitHub Desktop.
Lazy Load CSS Background Images
$(window).load(function(){
$('.lazyload').each(function() {
var lazy = $(this);
var src = lazy.attr('data-src');
lazy.css('background-image', 'url("'+src+'")');
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment