IE compatibility view – How to force IE8 to use IE7 rendering mode
I’ve had a problem with one of my sites, in which IE8 had a javascript error and I needed to use IE7 rendering mode, which was ok.
I this case I found two solutions:
1. Meta tag solution :
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7">
2. htaccess file solution
Header set X-UA-Compatible IE=EmulateIE7
In my case the .htaccess file version worked just fine
| Print article | This entry was posted by admin on July 20, 2010 at 11:03 am, and is filed under How to guides, Snippets, Tutorials. Follow any responses to this post through RSS 2.0. You can leave a response or trackback from your own site. |

about 7 months ago
I feel so much happier now I understand all this. Thnkas!