@vaiumagasosa @pogodindenis @lisardes
I tried @ayn’s approach but it didn’t work for some reason. The way I did it was I changed the selector to only include images in the #content div instead, and that worked fine.
jQuery(document).ready(function($){
if (navigator.platform == "iPad") return;
jQuery("#content").find("img").lazyload({
effect:"fadeIn",
placeholder: "$placeholdergif"
});
});