Do we really need to support Internet Explorer(6)?

I started browsing with Internet Explorer. It was in early 2000’s. At that time I thought it is the only browser which I can connect to internet. I continue using Internet Explorer till the end of 2004! Since at that time I never checked any websites in any other browser. Things changed in the beginning [...]

Tags: , , , , ,

Is IE? Shortest JavaScript code to find whether the browser is Internet Explorer.

There are a lot of JavaScript codes to find whether the user browser is Internet Explorer. But here is the shortest code to check whether the browser is Internet Explorer. if(‘\v’==’v’) It will return true if you are using Internet Explorer. So we can write the code like this. if(“\v”==”v”){ alert(“This browser is Internet Explorer”); [...]

Tags: , , ,

YSlow ignores IE conditional comment

When I was checking through some site, I noticed that YSlow will not check style sheets inside the IE conditional comment. If Yslow is not considering the style sheet inside the conditional comment how we can say that site is fully optimized through YSlow. So performance grade is not reliable in this regard. What do [...]

Tags: , , , , , ,