Hacker News new | ask | show | jobs
by botker 5281 days ago
This is the headline that so many of us fantasized about just a few years ago. The demise has been so slow that this barely feels like news. But with so many man-hours wasted on MSIE6 support, the headline's a legitimate cause for celebration.
1 comments

The thing is, it was only wasted by those who wanted to be cross-browser. If all you needed to do was work on IE6, there was no extra burden.
Sure there was. IE6 support always required 2 to 3 times as much effort to support, compared with any other browser.
If you didn't support any other browser, there by definition was no extra burden. In many enterprise shops you had IE and nothing else to worry about. I myself worked on apps where we only tested on IE because that's all the client used.
You'd have been working half-days if the only browser you supported was anything other than MSIE6.
In fact this isn't true, because one thing that IE did better than any other browser was scriptable async http calls and XML transformation with XSLT in the browser. At the time no other browser could do that. We were using javascript to get XML data from the server using the ActiveX XMLHTTP object, and transforming it client side with XSLT to generate HTML. This enabled filtering, sorting, and different presentations of data all client-side. This was hugely productive compared to imperative-style Response.Write HTML building, and at the time was only possible in IE.