Closed mcat closed 14 years ago
The offending line seems to be: var result = state.getEl.call(global.document,id);
It seems that IE host objects are not proper JavaScript objects in ie6 and ie7 and cannot be modified with the .call() method.
The error that IE throws is "Object doesn't support this property or method".
Fixed. Now we test for the error at startup and don't use call.
The offending line seems to be: var result = state.getEl.call(global.document,id);
It seems that IE host objects are not proper JavaScript objects in ie6 and ie7 and cannot be modified with the .call() method.
The error that IE throws is "Object doesn't support this property or method".