I am developing an application using a proprietary front-end framework. The framework supported only Internet Explorer 7, 8 standards.
Now as a new requirement, we are testing our application in the Internet Explorer 10. I tried it in three personal computers having the same browser settings as described below.
Internet Explorer Version: 10.0.9200
Browser Mode: IE 10 compatibility View
Document Mode: IE 7 standards
I tested the same UI in three systems and the page got rendered in two systems but I received a script error in one system and I am not able to find the reason for that error.
Error details in the below line at character 4:
Object doesn't support this action
var req = new XMLHttpRequest();
I am not able to find out the reason why the same application runs smooth in other browsers having the same settings.
new ActiveXObject("Microsoft.XMLHTTP")instead, although according to MS, IE7 has support for native XMLHttpRequest. - Zaffy