I am looking at the robot

Posts Tagged with browsers

Force compatibility mode in IE8

November 5, 2009 - For sites designed to work with IE7 ie. all of them.
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
more

Exclude IE

September 2, 2009 - Let's say you have no time to spend on fixing IE6 bugs, but still want to provide access to the content in unstyled form. You could use javascript, or probably a neater method is IE's conditional comments. The classic IE specific stylesheet call
<!--[if IE 6]>
<style type="text/css"> @import url(/assets/ie.css); </style>
<![endif]-->
more

console can break javascript

May 11, 2009 - console.log() more