“X-UA-Compatible” content=”IE=9; IE=8; IE=7; IE=EDGE”

<meta http-equiv=”X-UA-Compatible” content=”IE=9; IE=8; IE=7; IE=EDGE” /> Actually what is the meaning of this statement ? Some of the examples use , to separate versions of IE, while some use ;; which is correct? The order IE=9; IE=8; IE=7; IE=EDGE has some importance, I wish to know that. Edit: I am using <!DOCTYPE html> 2 … Read more

X-UA-Compatible is set to IE=edge, but it still doesn’t stop Compatibility Mode

I am quite confused. I should be able to set <meta http-equiv=”X-UA-Compatible” content=”IE=edge” /> and IE8 and IE9 should render the page using the latest rendering engine. However, I just tested it, and if Compatibility Mode is turned on elsewhere on our site, it will stay on for our page, even though we should be … Read more

What does do?

What’s the difference if one web page starts with <!DOCTYPE html> <html> <head> <meta http-equiv=”X-UA-Compatible” content=”IE=edge”> and If page starts with <!DOCTYPE html> <html> <head> <!– without X-UA-Compatible meta –> If there is no difference, I suppose I can just ignore the X-UA-Compatible meta header, since I just want it to be rendered in most … Read more