I am having the same problem, but in the console of the F12 of IE9, it says:
SCRIPT575: Could not complete the operation due to error c00c023f.
prototype.js?v=7.6, line 1361 character 7
and if I click the second line it takes me to the script tab to that file:
Ajax.Response = Class.create({
initialize: function(request){
this.request = request;
var transport = this.transport = request.transport,
readyState = this.readyState = transport.readyState;
if((readyState > 2 && !Prototype.Browser.IE) || readyState == 4) {
this.status = this.getStatus();
this.statusText = this.getStatusText();
this.responseText = String.interpret(transport.responseText);
this.headerJSON = this._getHeaderJSON();
}
if(readyState == 4) {
var xml = transport.responseXML;
this.responseXML = Object.isUndefined(xml) ? null : xml;
this.responseJSON = this._getResponseJSON();
}
},
pointing the 10th line:
this.responseText = String.interpret(transport.responseText);
How can I solve this?