Skip to content

Instantly share code, notes, and snippets.

@masarugen
Created October 28, 2012 12:20
Show Gist options
  • Save masarugen/3968471 to your computer and use it in GitHub Desktop.
Save masarugen/3968471 to your computer and use it in GitHub Desktop.
function jquery_lazy_load_ready() {
$placeholdergif = plugins_url('images/grey.gif', __FILE__);
echo <<<EOF
<script type="text/javascript">
jQuery.noConflict();
jQuery(document).ready(function($){
if (navigator.platform == "iPad") return;
jQuery("img").not(".cycle img").lazyload({
effect:"fadeIn",
placeholder: "$placeholdergif"
});
});
</script>
EOF;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment