ie

...and Boston traffic view http://t.co/eC7X4KKZ 3 days 5 hours ago

f1vlad last spotted in:

Nashua, New Hampshire

Don't want to satisfy IE8? Don't have to

Today I found out that if you don't want to do any sort of modifications to adjust your site for IE8, you don't have to do that. It isn't ideal situation of course, but there definitely could be circumstances where this could be necessary; for instance, web developer got fired.

The following tag will make this happen:

<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />

It will display standards DOCTYPEs in IE7 Standards mode and quirks DOCTYPEs in Quirks mode.

More info about this is available on MSDN website.

|

War on IE6 is on!

When I created a plug-in killie6, not many supported me. Some declared my methods are deceptive and unethical. Yes, I agree, Microsoft's armor icon could be quite radical, but my plug-in could be restyled to not be deceptive.

My project was thus put to temporary sleep for a while. It was used on a number of smaller sites that did not care about ie6 users.

|

killie6

Everyone keeps talking about Chrome these days and how great it is. I checked it out and I loved it too. But why don't developers keep talking about Internet Explorer 6? USA Today the other day had a huge article on Internet Explorer 8. But why didn't they try to explain to readers why IE6 should be abandoned? That is what is frustrating.

And I am convinced I am not alone wondering about when we (developers) will stop creating separate stylesheets for IE6 and forget it as a nightmare.

|

Brainwashing ie6 to use min-width

This code snippet will force your ie6 clients to understand min-width, pretty cool hack.

element.style{
_width:expression(((document.compatMode && document.compatMode=='CSS1Compat') ? document.documentElement.clientWidth : document.body.clientWidth) < 660 ? "660px" : "auto");
}

Note that I prepend '_' before 'width', that ensures that only ie6 will bother to try to interpret that command, other normal browsers will ignore that.

|
Syndicate content