I just found on my site using magento 1.3.2.2 that when bundled with the product, the price does not change in Internet Explorer when adding different options. However, it works great in all other browsers.
In Internet explorer, I get an error message.
Message: Object doesn't support this property or method
Line: 34
Char: 9
Code: 0
URI: /skin/frontend/my_new_interface/design2/js/bundle.js
So, I checked line 34 and found
parts = selection.id.split('-');
I checked that selection.id is a string. I am not a javascript expert and I am not familiar with the prototype.
In a lark, I decided to split the line as follows:
var parts = selection.id;
parts = part.split('-');
Well, that fixed the problem. In addition, I came back and simply shortened to:
var parts = selection.id.split('-');
It still worked. I do not think this is a file that I should mess up. I assume this javascript class should work fine, i.e. Without me, nothing will change.
, - , , , . - , , ?