0

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

the above line of code forces the browser to make

Document mode to IE 9 standard and Browser mode to IE 9 Compatiblity mode

How can i make Document mode to IE 9 standard and browser mode to IE 9 mode

Kuttan Sujith
  • 7,889
  • 18
  • 64
  • 95

3 Answers3

0

this works for me..

<!DOCTYPE html>
<html>
<head>
<title>title</title>    
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
lukeocom
  • 3,243
  • 3
  • 18
  • 30
0

Do you have any other links or scripts above your X-UA-Compatible meta tag in your <head>? If so this might be causing the problem.

Also make sure to check the compatibility settings in your browser itself by going to:

Tools --> Compatability View Settings

Bart
  • 444
  • 2
  • 6
0

There are several possible explanations, such as HTTP headers overriding the meta tag, domain name being blacklisted by Microsoft, or your local admin having forced IE to Compatibility mode. For a description of some possibilities and possible cures, check out IE8 and IE9 Complications in “Activating Browser Modes with Doctype”.

Jukka K. Korpela
  • 195,524
  • 37
  • 270
  • 390