I am facing this issue in IE9:
0x800a01b6 - Microsoft JScript runtime error: Object doesn't support property or method 'addEventListener'.
The line of code is:
l.addEventListener("DOMContentLoaded",I,!1),
To my knowledge jQuery 2.1.1 supports to IE9 and above. My application is in ASP.Net and want to upgrade jQuery 1.4 to 2.1.1. I tried by using below code right after the opening Head tag:
<meta http-equiv="X-UA-Compatible" content="IE=IE9">
It did not work.
Does anyone know of a solution to resolve this issue or we can set this in config file too? Thanks in advance.