I am trying to apply cloud zoom on a single image as in the below Fiddle
But it does not seems to be working. Someone have a look at this.
Here is another fiddle with working effects
The original plugin usage is here…. http://www.professorcloud.com/mainsite/cloud-zoom.htm
Problems with your first fiddle (the non-working one) include:
srcandclassattribute on your<a>tag'single quotes instead of"double-quotes for constructing the<a>tagpropwhereattrshould be used. The former is only for properties where the value is irrelevant, such asdisabled.srcfor the image source instead ofx(which could mean anything, and in fact suggests a number)$(this)calls. Instead, set a local variable$thisas shownHere’s the working corrected version: http://jsfiddle.net/6dR2k/ .