DopinPanda
Forum Replies Created
Viewing 4 replies - 1 through 4 (of 4 total)
-
Forum: Plugins
In reply to: [jQuery Image Lazy Load WP] jQuery Image Lazy Load WP disable for iphoneOK!!
this code worked for me, hope for u too.
——————————————————<?php /* Plugin Name: jQuery lazy load plugin Plugin URI: http://github.com/ayn/wp-jquery-lazy-load/ Description: a quick and dirty wordpress plugin to enable image lazy loading. Version: v0.10 Author: Andrew Ng Author URI: http://blog.andrewng.com */ function jquery_lazy_load_headers() { $plugin_path = plugins_url('/', __FILE__); $lazy_url = $plugin_path . 'javascripts/jquery.lazyload.mini.js'; $jq_url = 'http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js'; wp_deregister_script('jquery'); wp_enqueue_script('jquery', $jq_url, false, '1.4.2'); wp_enqueue_script('jquerylazyload', $lazy_url, 'jquery', '1.5.0'); } function jquery_lazy_load_ready() { $placeholdergif = plugins_url('images/grey.gif', __FILE__); echo <<<EOF <script type="text/javascript"> jQuery(document).ready(function($){ if (navigator.platform == "iPad") return; if (navigator.platform == "iPhone") return; jQuery("img").lazyload({ effect:"fadeIn", threshold : 200, placeholder: "$placeholdergif" }); }); </script> EOF; } add_action('wp_head', 'jquery_lazy_load_headers', 5); add_action('wp_head', 'jquery_lazy_load_ready', 12); ?>Forum: Plugins
In reply to: [Shadowbox JS] [Plugin: Shadowbox JS] not complete loadsworked perfectly thanks a lot. !!!!!!!!!!!!
Forum: Plugins
In reply to: [Shadowbox JS] [Plugin: Shadowbox JS] not complete loadsK great ill check and comment back here. Thanks for ur quick reply
Forum: Plugins
In reply to: [Shadowbox JS] [Plugin: Shadowbox JS] not complete loadsSrry, in the hurry i forgot. http://Www.dopinpanda.com/blog
Viewing 4 replies - 1 through 4 (of 4 total)