in short: use Edge mode
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge" >
No disturbing compatibility icon
The IE9 Address bar does not show up the Compatibility View button
and the page does not also show up a jumble of out-of-place menus, images, and text boxes.
Features
This meta tag is required to enable javascript::JSON.parse() on IE8
(even when <!DOCTYPE html> is present)
Correctness
IE8 and later render nicer valid HTML/CSS/JavaScript
Optimized
IE8 and later will use their standard engine mode
=> Faster page rendering (mode for which IE is designed)
Because Edge mode forces all pages to be opened in standards mode, regardless
of the version of Internet Explorer, you might be tempted to use this
for all pages viewed with Internet Explorer. Don't do this, as the
X-UA-Compatible header is only supported starting with Windows
Internet Explorer 8.
Therefore Microsoft recommends instead use <!DOCTYPE html> without X-UA-Compatible meta tag.
If you want all supported versions of Internet Explorer to open
your pages in standards mode, use the HTML5 document type declaration.
more details: History
For many years (2000 to 2008), IE market share was more than 80%. And IE v6 was considered as a de facto standard (80% to 97% market share in 2003, 2004, 2005 and 2006 for IE6 only).
Therefore Web developers had to test their website using IE6 and many many sites were IE6 compliant only. That situation was great for Microsoft (MS) as web developers had to use Microsoft products (e.g. IE cannot be acquired without buying Windows). As IE was less and less web standard compliant, as developers were more and more dependent on Microsoft products.
Therefore IE4/IE5/IE6 did not respect the web standards. As this incompatibility stayed an advantage for MS, it did not implement new and interesting features of web standards. And this situation did not change for a while. Nowadays, IE6 is still used (6% in March 2013), some websites (intranet) are still IE6 compliant only!
However Mozilla was developing Firefox respecting as much as possible all the web standards. And more and more web developers wanting to use new features of the web standard instead of trying to workaround IE6 incompatibility bugs. Slowly websites were rendered better using Firefox because of implementation of the well documented standards.
When IE market sharing was decreasing, MS realized staying standard incompatible was no longer a good idea. Therefore MS started to release new IE version (IE8/IE9/IE10) respecting more and more the web standards. But the problem was all the websites designed for IE6. Microsoft had to find a way to be simultaneously compliant with IE6-designed-websites and standard-compliant-websites. (In a more general way, new IE versions have to render sites designed for different IE versions: IE5/IE6/IE7/IE8/...)
But how to detect whether the web site has been designed for IE6 or IE8 or... Therefore MS requested developers to add extra data (meta tag) within the HTML code in order to help IE identifying for which IE version the page has been designed/tested. Else (if developer is nasty) IE will not display well the web site.
browsers have to be compliant with your website because your are a good developer
If you (try to) respect web standard, you can simply always use <meta http-equiv="X-UA-Compatible" content="IE=edge">. To keep compatibility with old browsers, just avoid latest web features: use the subset supported by the oldest browser you want to support. Do not care about the best IE version rendering.
Internet browsers have to be compliant with web standards: If your site is standard compliant and use moderately latest features, therefore browsers have to be compliant with your website. If some visitors use an incompatible browser, they may upgrade ;)
You may also avoid wasting time with IE testing! (MS does not provide IE9 on Windows XP, and do not provide IE on other OS except some old IE on MacOS)
personal IE6 experience
I worked 2010-2012 for a company using IE6 as the official corporate browser (i.e. the single browser allowed). I had to implemented an intranet website for IE6 only. I decided to respect web standard but using the IE6-capable subset (HTML/CSS/. It was hard, but when the company switched to IE8, the website was still well rendered. Firefox and firebug have helped me a lot ;)
please help
You may think my answer is a bit longer. Please suggest me simplification => edit this answer: remove unrelevant information. I prefer short and clear text than text too much detailed. Thanks ;-)