I am attempting to install the image LazyLoad plugin with use on my WordPress 3.3.1 blog.
I have followed the basic instructions, so it is installed and activated on my development site.
The problem is I see no jQuery.sonar reference in the source (which this plugin uses).
The plugin does this when en queuing the scripts:
wp_enqueue_script( 'wpcom-lazy-load-images', self::get_url( 'js/lazy-load.js' ), array( 'jquery', 'jquery-sonar' ), self::version, true );
wp_enqueue_script( 'jquery-sonar', self::get_url( 'js/jquery.sonar.min.js' ), array( 'jquery' ), self::version, true );
Why would these scripts not be output and available in the source?
It’s better check if your minify plugin ( eg:- W3 total) minify or combined jQuery.sonar file. That’s why you can’t see it.