0

Every time when I open a page that has the <meta http-equiv="X-UA-Compatible" content="IE=edge">, the page stops suddenly and It says that the page is not responding, do you know an alternative way to turn the compability mode OFF in the pages that I can Use from IE6 to IE10?

Web_Designer
  • 72,308
  • 93
  • 206
  • 262
Pablo Glez
  • 306
  • 1
  • 7
  • 20

2 Answers2

0

In my experience IE9 is tricky - it falls between 7/8 which you can deal with and IE10 which is tons better.

This has always worked for me with IE 7-11:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">

<head>
<!--[if IE 8]>
<meta http-equiv="X-UA-Compatible" content="IE=7">
<![endif]-->

Hope this helps...

Tony Duffill
  • 277
  • 1
  • 5
0

i hope it help you

  <head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->


    <!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
    <!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
    <!--[if lt IE 9]>
      <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
      <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
    <![endif]-->
  </head>
nyn05
  • 540
  • 5
  • 17