image of elevatezoom not scrolling in Cell Phone
When there is a picture of elevatezoom pluging And you want the Scroll And you stand on the image with your finger Can not Scroll Up or Down in mobile phones
need help
I was looking to destroy elevateZoom on mobile for a better user experience and was running into the same issue.  I couldn't scroll the webpage when I tried over the image.  I found that the touchmove event is prevented from normal function via the following code:
b.$elem.bind("touchmove", function(a) {
            a.preventDefault();
            b.setPosition(a.originalEvent.touches[0] || a.originalEvent.changedTouches[0])
        });
I removed elevateZoom and un-binded touchmove with the following code.
        $('#imgzoom').removeData('elevateZoom');
        $('.zoomWrapper img.zoomed').unwrap();
        $('.zoomContainer').remove();
        $("#imgzoom").unbind("touchmove");
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With