elevatezoom
elevatezoom copied to clipboard
multiple zoomContainer issue when more then one image is opened
multiple zoomContainer issue while multiple images are opened . When there is more the one image is opened and you added elevateZoom using class method like :->
$(".test").elevateZoom(zoomConfig); then mutltiple zoomContainer will be created and that cause problem of clicking any other div
Did you find a solution to this?
I had the same issue when using carousel. A zoomContainer left from previous page will show when hovering to the left. A new zoomContainer is created every time a new image is opened. To make sure there is only one zoomContainer, I just call $('.zoomContainer').remove();
before elevateZoom(). It works for me.