TypeError: image.elevateZoom is not a function: Failure in Magento 1.9 RWD theme
javascript, jquery, magento, php
Solution
I've got the same issue - not that it's a complete solution but it certainly stops the error for now, by stopping the function being called on the review page.
in the file /skin/frontend/rwd/default/js/app.js
line 649 change
image.elevateZoom();
to
if ($('.review-product-list').length == 0) {
image.elevateZoom();
}
Problem
In Magento 1.9 CE, if we browse the product reviews page, it displays an error TypeError: image.elevateZoom is not a function This is because, magento is zooming image in product page using this plugin the JavaScript interpreter, because of a failure shuts down on this page, JavaScript is not executed. This leads to decreased functionality of the page. Can anyone help me on how to remove this error so that I can use js on this page? These guys say they have solved the problem, but I can't get the solution. I have asked the same question on Magento Stack.