jackmoore / zoom

jQuery plugin for zooming images on mouseover.
http://www.jacklmoore.com/zoom/
MIT License
1.54k stars 460 forks source link

change image src and zoom #58

Open blekman opened 10 years ago

blekman commented 10 years ago

Hi, i want to use your zoom in my website, but the product that i want to zoom it have 3 photos

I change the photos in javascript: onmouseover="document.getElementById('bigpic').src = 'xxx.jpg';"

I initial your plugin in this syntax: $(document).ready(function(){ $('#ex1').zoom({url: 'bigxxx.jpg'}); });

how can i pass the new big image to your function that the enlarge will be the right one?

vikasgarghb commented 10 years ago

Did you find an answer to this?

Mithgol commented 10 years ago
 $('#ex1').trigger('zoom.destroy');
 $('#ex1').zoom({url: 'new_bigxxx.jpg'});