views:

145

answers:

3

I've been coming across blogs/websites lately that only load images when they are scrolled into the visible viewport. It then fades them in. Is there a jQuery ... even Wordpress plug-in that does this?

e.g. http://icodeblog.com

+3  A: 

One of the good things about javascript is you can view source and look at whats going on

After viewing the source i found this...

http://www.appelsiini.net/projects/lazyload

Galen
+1  A: 

LazyReady: http://plugins.jquery.com/project/LazyReady

Glennular
+1  A: 

I wrote a simple tutorial on using the jquery lazyload plugin - check it out: http://deanhume.com/Home/BlogPost/lazy-loading-images-with-jquery/22

Deano