Reputation: 2922
I'm getting this error in IE 11, windows 7 environment where I have used jquery 1.7.1 I have read all the answers in stackoverflow related to this and couldn't find solution. And I have added the below meta tag too.
<meta http-equiv="X-UA-Compatible" content="IE=edge">
But surprising that this meta tag is not visible when I do inspect element.
Could you please help me to guess the issue. Thanks
Upvotes: 1
Views: 102
Reputation: 2922
The invisibility of meta tag is the my code issue. And It is fixed after I made IE9 compatibility when our application opens in IE browser. i.e changed content="IE=9" in meta tag as following.
<meta http-equiv="X-UA-Compatible" content="IE=9">
Upvotes: 1