X-UA-Compatible


/ Published in: HTML
Save to your folder(s)

Internet Explorer has many rendering engines ready for use. What this line of code basically does is force IE to use the most up to date rendering engine that it has available, so that your pages will render as well as possible. It then goes on to talk about Chrome Frame. Chrome Frame is a plugin for IE6, 7, and 8 which brings all the rendering, and js power of Google Chrome to IE. If the user has it installed, we render our site using it.


Copy this code and paste it in your HTML
  1. <!-- Always force latest IE rendering engine (even in intranet) & Chrome Frame -->
  2. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">

URL: http://www.chromium.org/developers/how-tos/chrome-frame-getting-started

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.