I have had a go at implementing lazy loader on my site. See the sandbox here:
http://www.brencecoghill.com/projects/north-vietnam/
the following text was added to my isotope to make this work (along wit the necessary html and linking to the library from the header):
$("img").lazyload({
event : 'scroll',
effect : 'fadeIn',
appear: function(){
}
});
This appears to work fine in firefox, but is a total fail in IE (i tested with version 8) - just displaying grey boxes.
how do I fix this to work in IE? (at least version 8 or greater)
is there a way to setup lazyloader so that it degrades nicely?
FYI I used these links to figure out how to implement this: http://www.appelsiini.net/projects/lazyload
Combining jQuery Isotope and Lazy Load
EDIT: i remove the line that was trying to write to the console above. Any other suggestions on fixing the other script errors I am getting?
console
. There is no such thing in IE so that will always break. Remove theconsole
statements and see if it works. Besides that your design is broken in other places in IE7. – Seisin