0

see my post here

In that context

What is the meaning of value="IE=edge"?

What is the meaning of value="IE=EmulateIE8" ?

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

1 Answers1

2

IE=edge simply tells IE to use the last version of the rendering engine.

It's documented here, just like the less useful (in my opinion) IE=EmulateIE8.

IE=edge helps you avoiding some "compatibility" behaviors. It makes IE9 more compatible with other modern engines.

See this related question for example. I always start my HTML files with

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
Community
  • 1
  • 1
Denys Séguret
  • 372,613
  • 87
  • 782
  • 758