|
Well, I have a similar error in the backend. So far no solution either...But I have to mention, IE8 has the smallest Js Stack space of all Browsers and Magento has a quite extensive use of JS in the backend. I\’ve disabled a JS library and the error vanished, but it is no solution:
I did this to disable a certain JS in admin/catalog_product/edit. Add this code to your catalog.xml in app/design/adminhtml/default/YOURTHEME/layout:
<adminhtml_catalog_product_edit> <!-- remove ext-tree js in catalog product edit --> <reference name=\"head\"> <action method=\"removeItem\"><type>js</type><name>extjs/ext-tree.js</name></action> </reference>
|