Google Analytics İzleme

17 Kasım 2015

Html 5 web sayfasının İnternet Explorer 10 tarayıcısında İnternet Explorer 7 modunda çalışma sorunu

--
<!DOCTYPE html>
<html>
<head>
   <title></title>
</head>
<body>

</body>
</html>
--
Yukarıdaki şekilde default html 5 ile oluşturulan web sayfası İnternet Explorer 10 sürümünde açtığımızda İnternet Explorer 7 modunda çalıştırmaktadır. Bunu engellemek için "X-UA-Compatible" meta etiketi ile son sürümde çalışmasını zorlamamız gerekmektedir.

Olması gereken:
--
<!DOCTYPE html>
<html>
<head>
   <meta http-equiv="X-UA-Compatible" content="IE=edge" />
   <title></title>
</head>
<body>

</body>
</html>
--
Kaynaklar:

IE10 renders in IE7 mode. How to force Standards mode?

What's the difference if <meta http-equiv=“X-UA-Compatible” content=“IE=edge”> exists or not?

A GUIDE TO IE COMPATIBILITY VIEW AND X-UA-COMPATIBLE

Fix Bad value X-UA-Compatible once and for all