0

As title says - I need a way of viewing a page in IE8 compatibility mode. The option to do this isn't found in developer tools and I can't seem to find any compatilibty settings in the browser's tool menu.

2 Answers2

0

you should see a small broken paper icon next to the url bar -> enter image description here, click it.

http://windows.microsoft.com/is-IS/windows7/How-to-use-Compatibility-View-in-Internet-Explorer-9

Christophe
  • 4,798
  • 5
  • 41
  • 83
0

Add the following line of text as first dom element after 'head' element.

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

Can also switch to "IE=EmulateIE7" to emulate IE7.

Panoramus
  • 23
  • 1
  • 7