Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

how to force to use Internet Explorer IE9 standards document mode, I built a website and while rendering IE9 uses Quirks mode each time but I want to use standards mode for rendering.

share|improve this question

3 Answers

up vote 23 down vote accepted
 <!doctype html>
 <meta http-equiv="X-UA-Compatible" content="IE=Edge">

For explanations, see http://hsivonen.iki.fi/doctype/#ie8 (it looks rather messy, but that’s because IE is messy in its behaviors).

share|improve this answer
This doesn't work if your content is loading into an iframe and the parent window doesn't have a doctype specified. It will follow apply the quirks mode to the iframe as well. I hate microsoft. Also here is a link to a microsoft site talking about this answer. msdn.microsoft.com/en-us/library/ie/hh920756(v=vs.85).aspx – teewuane May 13 at 15:36

put a doctype as the first line of your html document

<!DOCTYPE html>

you can find detailed explanation about internet explorer document compatibility here: Defining Document Compatibility

share|improve this answer
@ inancsevinc: My aspx page already had <!DOCTYPE html> and it was still using IE7 document mode when rendered. So in this sense your suggestion alone did NOT resolve my problem. The trick for me was to add <meta http-equiv="X-UA-Compatible" content="IE=Edge"> immediately below it as suggested by Jukka K. Korpela. I do appreciate that your sugegstion may be valid, I just don't understand why it alone would not force IE to IE9 mode for me. – leoinlios Mar 19 at 12:01

Make sure you use the right doctype.

eg.

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">

or just

<!doctype html>

and also read and understand how compatibility modes and developer toolbar for IE work and set modes for IE: http://blogs.msdn.com/b/ie/archive/2010/10/19/testing-sites-with-browser-mode-vs-doc-mode.aspx

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.