I use this markup:
<div id="zoom">
<div id="small">
<img id="image1" src="images/1.jpg" alt="example" title="Image" class=" img-polaroid">
</div>
<div id="large">
<img id="image2" src="images/1.jpg" alt="example" title="Image" class=" img-polaroid">
</div>
</div>
And I make the call this way:
jQuery(document).ready(function(){
jQuery("#zoom").anythingZoomer()
});
My jQuery version is: 1.8.3
It says Cannot read property 'left' of undefined when I hover on an Image,
https://github.com/CSS-Tricks/AnythingZoomer
Please help.