Click here to Skip to main content
15,887,746 members
Please Sign up or sign in to vote.
4.00/5 (1 vote)
See more:
need help
i am making a Zooming image in Jquery
i used
C#
$(document).ready(function()
{
 var options = {
             zoomType: 'standard',
             lens:true,
             preloadImages: true,
             alwaysOn:false,
             zoomWidth: 300,
             zoomHeight: 250,
             xOffset:90,
             yOffset:30,
             position:'left'
};

$('.MyBigclass').jqzoom(options);

});

and
my both images are this
XML
<div>

    <a href="images/Product634942228352174000.jpg"  rel="gall"  title="Bigimage">
    <img src="images/Product634942228352174000.jpg" alt="SmallImage"  />
    </a>
    </div>


please help and tell me where i am missing
Posted

1 solution

You just forgot the class="MyBigClass" attribute in your html anchor object. You can confirm this here[^].
 
Share this answer
 
v2
Comments
faizyab 2009 21-Jan-13 11:52am    
Marcus : now i am applying this but still same please check
<div>


<img src="images/thumbs/Product634942228352174000.jpg" alt="SmallImage" />

</div>

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900