Click here to Skip to main content
15,885,141 members
Articles / Product Showcase
Article

Fix Common IE Problems: Update Your docmode for Web Standards

15 Mar 2012CPOL4 min read 20.4K   4  
Fix common IE problems: Update your docmode for web standards

This article is in the Product Showcase section for our sponsors at CodeProject. These articles are intended to provide you with information on products and services that we consider useful and of value to developers.

Document compatibility defines how a browser renders your website.  The more specific you are at telling the browser what to expect, the better the experience for your users. When using web standards like HTML5, start by explicitly declaring the HTML5 document type:

This markup triggers standards mode in Internet Explorer 9 and 10.  And it also works well in Chrome and Firefox.  Four steps will get your site ready for many browsers and devices:

Step 1: Validate that your site uses standards mode

Check whether or not your site is currently in standards mode:

  1. Open the website in IE10 platform preview.
    • Note: You can also follow the same steps to update the docmode for IE9 only without downloading the preview.
  1. Press F12 to launch the IE Developer Tools or find it on the Tools menu as shown below:

Image 1

  • Note: If you’re not familiar with using the IE F12 Developer Tools to debug your webpages, please read the following tutorial.
  1. Check if your site indicates Browser Mode: IE10 and Document Mode: IE10 standards as shown in the toolbar below:

Image 2

  1. If your site is in Browser Mode: IE10 and Document Mode: IE10 Standards, you’re done!  Note if the Browser Mode and Document Mode of your site are different than above.  A common example is Browser Mode = IE8 and Document Mode = Quirks which indicates that your website was designed for older versions of IE and may not be ready for web standards.  

Image 3

Step 2: Implement docmode for web standards

Force IE10 standards mode to test your website:

  1. Insert <!DOCTYPE html> into your website’s HTML page
    • Learn more about how to update your doctypes here.
  1. Reload your page in the browser and check the Browser Mode and Document Mode again using the F12 Developer Tools.  If Browser Mode: IE10 and Document Mode: IE10 standards are not shown, continue below.

Step 3: Determine why your site is not in Standards Mode

Most problems are related to supporting older versions of IE.  Start by ensuring your standards-based code is rendered in IE9 and 10.  Then keep your non-standards-based code for older versions of IE.

  1. My page is not in Browser Mode: IE10
  • Possible Cause: Your website may flagged in Compatibility View and forced into an older browser mode to ensure the site functions
    • Resolution: Check if your site is on the list here.  Learn more about the Compatibility View list and request removal here.
  1. My page is not in Document Mode = IE10
  • Possible Cause: Your website’s doctype is invalid or missing
    • Resolution: Check for a valid, well-formed doctype like:
      HTML
      <!DOCTYPE html>
      <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"   
      "http://www.w3.org/TR/html4/strict.dtd">
      <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
      "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

Learn more about how to update your doctypes here.

  • Possible Cause: Docmode being forced via X-UA-Compatible meta tag
    • Resolution: Check for code similar to this in the <head> of the page.
    • <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" >
      <meta http-equiv="X-UA-Compatible" content="IE=8" >

      Remove it and reload your page.  Continue testing.  Learn more about Specifying Document Compatibility Modes here.

Step 4: Resolve common IE problems when updating docmode

Most problems are related to supporting older versions of IE.  Start by ensuring your standards-based code is rendered in IE9 and 10.  Then keep your non-standards-based code for older versions of IE.

  • Possible Cause: Conditional comments support browser version-specific features
    • Resolution: Check for conditional comments that run non-standard code.  These are often used on specific features supported by older versions of IE to allow the page to degrade gracefully.  Check for code similar to this:
      <!--[if IE 8]>
      <p>Welcome to Internet Explorer 8.</p>
      <![endif]-->

      Remove it and reload your page.  Continue testing. Learn more about Conditional Comments here.

  • Possible Cause: User agent sniffing supports browser version-specific features                
    • Resolution: Check for user agent sniffing. These are often used to specifically target a browser based on the user agent string presented via the browser mode.  Check for code similar to this:
    • C#
      if (version = /MSIE (\d+\.\d+)/.exec(navigator.userAgent)) {
      	isIE = true;
      browserVersion = parseFloat(version[1]);
      }

      Start by implementing feature detection where possible with web standards.  Learn more about User-Agent Strings here. The IE10 User-Agent String is located here.

Other reasons my page does not render correctly

  • Possible Cause: Your website may be using browser specific features that are no longer supported.  Use web standards whenever possible.
  • Possible Cause: Your website may be using 3rd party plug-ins or like Flash, Quicktime, and Silverlight that are no longer supported by the IE10 metro.  Use web standards whenever possible.
    • Resolution: Learn how to create plug-in free experiences.  A complete step-by-step guide will be available shortly.
  • Possible Cause: Your website may be loading browser version-specific CSS files:
    • Resolution: Ensure layout is avoiding CSS hacks where possible.  Learn more about investigating CSS issues here.

A list of common problems is available in the IE Compatibility Cookbook (http://msdn.microsoft.com/en-us/library/ff986083(v=VS.85).aspx).

If you’re unable to update your docmode with these resolution steps, tweet us @IE or check the Forums on MSDN.

For further detail, try these articles:

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
United States United States
Rey is a Principal Program Manager at Microsoft focused on web development and open source projects. He's a former member of the jQuery Project Team. Read his blog
or follow him on Twitter @reybango.

Comments and Discussions

 
-- There are no messages in this forum --