Issue in IE browser

I have this code in my page

<meta http-equiv="X-UA-Compatible" content="IE=8"/> 

I wish to make it IE10 , IE11 compatible . What changes I should make to my above code ?

Change the 8 to 10 - simple as that. Better still, change it to “edge”. Let me find the page, I’ve been reading it recently.

This should explain your options - http://stackoverflow.com/questions/6771258/whats-the-difference-if-meta-http-equiv-x-ua-compatible-content-ie-edge-e

bit confused. I want to make it IE9,IE10,IE11 compatible .

shall I write this way ?

<meta http-equiv="X-UA-Compatible" content="IE=8,IE=9,IE=10,IE=11"/>

Use ‘edge’ othwerwise you limit the browser to older versions.

<!-- force IE8+ into standards mode -->
<meta http-equiv="X-UA-Compatible" content="IE=edge">

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.