Skip to content

Instantly share code, notes, and snippets.

@pedromenezes
Created August 25, 2011 13:38
Show Gist options
  • Save pedromenezes/1170681 to your computer and use it in GitHub Desktop.
Save pedromenezes/1170681 to your computer and use it in GitHub Desktop.
<img class="lazy" src="placeholder.gif" original-src="original-image.jpg" />
<noscript>
<img src="original-image.jpg" />
</noscript>
<script>
$(function(){
$('img.lazy').lazyload({threshold: 30});
});
</script>
<script src="jquery.js"></script>
<script src="jquery.lazyload.js"></script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment