Slashdot Mirror


When Should You Stop Support for Software?

hahafaha asks: "I am currently working on a website for a small organization. We (I am not alone in this) have a beta version ready, and are currently testing the site on browsers. We have tried all of the big browsers (Firefox, IE, opera), as well as other browsers, such as lynx, links, w3m and even NetFront. So, when can one decide that they will stop supporting a system. Obviously, going (for example) down to IE 1 is crazy, but is IE 3 crazy? This is not only relevant to web design but to any programming at all. When, for example, can you say that I will *not* support a certain version of Windows. Can you say that now about Windows 98? How about 95?"

41 of 438 comments (clear)

  1. Depends... by ndogg · · Score: 5, Insightful

    Depends on if you consider x% of the interweb population to be valuable to your business.

    --
    // file: mice.h
    #include "frickin_lasers.h"
    1. Re:Depends... by BasilBrush · · Score: 5, Informative

      Indeed. In fact to pad that out further, go here (or a similar stats site) and read off the percentage of users that you want to reach. http://www.w3schools.com/browsers/browsers_stats.a sp

      If you're happy for just 61% to be able to use it, then just support I.E.6.
      If you want to hit 85%, then you better support Firefox too.
      If you want to bump that up to 90% support I.E.5 as well.
      If you want to mop up some of the last 10%, then support Netscape, Opera etc.

    2. Re:Depends... by unoengborg · · Score: 4, Insightful

      It is not as simple as just look at the percentage of users that use a certain browser.

      The choise of browser also is an indication whether the user is likely to buy something or not, at least if you sell software or some other computer related thing

      A user that still runs IE3 may be less likely to change things, or buy anything new than a user that runs the latest version of IE or even have shown enough initiative to upgrade to Firefox or Opera.

      So 10% user share for Firefox, would likely be of more business value than 10% IE5 users.

      --
      God is REAL! Unless explicitly declared INTEGER
    3. Re:Depends... by FuzzyBad-Mofo · · Score: 4, Informative

      The web is different from the notion of traditional software because of the possibility for graceful degradation. When I write standards-compliant pages that look great in modern browsers, they also degrade so that older or limited browsers are still able to use the site, albeit without the exact same presentation.

      As a professional web developer, I target all current browsers for identical rendering (or at least very similar). This includes Firefox 1.5, Safari 2, Opera 8, IE 6. For previous-generation browsers such as Firefox 1.0, IE 5.5, and Opera 7 an effort is made to achieve identical rendering, but this is secondary. Some variance is tolerated, but major rendering issues must be fixed. Going back even further to Pre-1.0 Firefox, IE 5, and IE 5 Mac even more variance is tolerated, and by the time we get to Netscape 4.x I'm pretty comfortable with simply showing them an unstyled page.

      Really, there is a formula which can represent the browser support for a project, and it's simply not worth spending much time fixing sites for minority browsers which have been discontinued. Of course, if support for a particular browser is requested by the client then I am happy to oblige. But they don't usually want to pay extra for that service, and for good reason. The web has moved on from HTML 3.2, and there are simply too many benefits to developing with XHTML+CSS to ignore.

  2. When the vendor no longer supports it... by (H)elix1 · · Score: 3, Insightful

    That is what I see. When the vendor drops support - and that can range from normal EOL to extended contract based EOL - it is time to stick a fork in it. Sadly, it looks like I get to keep a copy of Solaris 8 running for a few more years....

  3. This is Easy... by barfy · · Score: 4, Insightful

    Whenever the cost of supporting the customers that comes from supporting those customers, exceeds the benefits of satisfying those customers.

    The trick is determining the costs and benefits. But often it is not that hard.

    1. Re:This is Easy... by ozmanjusri · · Score: 5, Interesting

      Whenever the cost of supporting the customers that comes from supporting those customers, exceeds the benefits of satisfying those customers.

      You don't ever stop supporting your customers. You just switch to paid support after your warranty or contracted support period has expired.

      I'm still supporting the first commercial software I ever wrote (a refrigerator controller for a meat packing company) because it still does the job I originally wrote it for, and the company using it occasionally pays me to port it to newer hardware. I'm not making a loss, and it's not a huge money spinner for me, but I'll continue supporting it because it's mine.

      --
      "I've got more toys than Teruhisa Kitahara."
    2. Re:This is Easy... by inoyb · · Score: 5, Interesting
      You don't ever stop supporting your customers. You just switch to paid support after your warranty or contracted support period has expired.

      I'll disagree with this. The company I work for recently stopped support for some software we wrote in 1999. We provided more than 2 years notice, and a reasonable upgrade path.

      Our entire code base was rewritten in 2000 and once again in 2005. Supporting 3 different code bases is not practical.

      First of all, for front line support people, have them trained on 3 different products is simply not practical.(While the 3 pieces of software are similar in general functionality, they're are significant differences in how the achieve that functionality.)

      More importantly, the number of developers that are familiar with the original code base is small. And these are the most senior developers and having them spend the their time looking at the old case base is not a productive use of their time.

      I suppose we could have offered a support contract to the customers of the older version that represented the realistic cost of what it would be to support the older code base. But, the number would have been ridiculously high and would probably be seen as quite insulting by the customer.

      It made more sense to announce the sunset of the product with a large amount of advance notice, and provide a reasonable upgrade path.

  4. That is a business decision. by khasim · · Score: 3, Insightful

    That's a business decision, not your's.

    If the company is willing to pay you to support old browsers/OS's because the company is getting something out of the clients with those browsers/OS's, then that is their concern.

    1. Re:That is a business decision. by SteveAyre · · Score: 4, Insightful

      NOT a good way of making that decision. That'll be 1% of the people using the site. Who the site already work for.

      Anyone using an incompatible browser'll see the first page, then have to go away. It won't show up that many people are using the browser to view the web pages, even if a lot want to.

      So that method'll be biased towards saying there's no point because 99.9% of your users use a browser which is already compatible.

      Some people who can't will simply open another browser such as IE and come back. Others can't - it's pretty much impossible to use many sites designed for IE (especially any that require ActiveX) on anything other than Windows. *nix users are completely cut out of your user base, and Mac users too now that IE won't be available for that any more.

      These users probably won't have Windows to load IE in and therefore won't use your site. Even if they do, having to reboot into Windows would turn them away from using your site. And probably to your competitors site, which does happen to work in their browser.

      Most annoying I find are the sites that turn away anything that's not IE because they don't support 'Netscape' (I actually use Firefox), even though their website would work perfectly without any changes except removing that damn message.

  5. Support only if it pays by chriss · · Score: 4, Informative
    This is not only relevant to web design but to any programming at all.

    Shouldn't the only be stricken as in This is not relevant to web design, but to any other kind of programming?

    One of the big advantages of HTML is that it usually scales down nicely. I admit that once you start to rely on Javascript/DHTML/AJAX etc. exclusively you will run into problems, but if you care in any way about search engines being able to crawl your site you will most likely have at least a site map that can be handled by googlebot as well as lynx, links, w3m and any revision of Netscape or IE, however old they are. The pages will possibly look like crap if you rely on advanced CSS like hiding DIVs on demand, but will most likely still be useful. [This wont apply if you just cashed in 10 millions from a VC to build an MS Office clone in JS].

    This usually will not require a second development tree, just keeping your design clean and based on standards. I consider this a mayor sales point to management. As a nice extra you will even be able to handle requests from the future mobile web crowd, reaching your side from their smart phone, or even the millions of kids Nicolas Negroponte intends to provide with $100 laptops.

    For non-web platforms: as long as it pays.

    This may be cruel, but if you invest into older technology that will not generate any new sales, this money cannot be put into offering better service and features or price cuts for the new versions. It will be hard to determine how long something pays, e.g. customers may buy the newer version because they have learned from experience that the product will be supported for a long time, so not supporting W95 might actually be the wrong move. Try to determine how many support request you get from users with older versions and if they are returning customers. Determine the cost (in money and new features that cannot be implemented due to support for the old platform) for keeping the old version on board. If the costs are higher, kick it. Beneath other things you are responsible to stay in business, so you actually can support the current version for your customers.

  6. value of lost customers by pvt_medic · · Score: 3, Interesting

    I think the best way of looking at this is with money.
    Who are your customers, and what are the demographics of their systems. Windows 98 is still a very prevelant system out there. I am writing this post from a computer that is still running windows 98. The big questions are
    How many are you going to loose by not including their system?
    how many can you afford to loose?
    And how much would it cost to include them?

    --
    30% Troll, 50% Underrated, 10% Interesting
    Score:5, Troll
  7. Take the lead from others.... by dallask · · Score: 4, Insightful

    I develop websites as well as part of a much larger firm. We stop providing support for older browsers (Like IE 5 and 5.5 Mac) when MS decides to stop supporting them.

    We will only test on XP, Win2K and win 98, but not 95... (that's just silly :)

    Our browser support goes back to IE 5.5 Win, NS 6, FF .8, and Safari (forget which version).

    Take the hint from others and you will be able to justify your actions.

    --
    The Code Ninja is swift with his tool, precise in his delivery, and deadly accurate in his execution.
  8. The obvious answer by kaligraphic · · Score: 3, Insightful

    I suppose the obvious answer would be "What is the lowest level that you could reasonably expect from your userbase". For a site touting the latest and greatest in web technology, you might be a bit heavier in your requirements than for, say, a site on nutrition.

    For regular applications, you might ask yourself what the lowest level is that can reasonably be expected to do what's required. i.e. if you need a gig and a half of RAM for most operations, you might not support Win95 simply because it can't support you RAM-wise.

    Then, even if you could do it in '95, would your userbase still be in '95? Really, it just boils down to "what's on the machines of the people you want to serve?"

    --
    You are standing in an open server west of a blue house, with a boarded front door. There is an Exchange mailbox here.
  9. Simple economics by mcrbids · · Score: 4, Interesting

    There's a formula you can use to help you figure this out.

    A) Take the amount of money you're getting IN SALES of older product. Pull a number out your arse to represent the goodwill you get by supporting older products, and add it in.

    B) Take the amount of money you're spending TOTAL to support older product. Include salaries, time estimates, etc. Add in the costs of anticipated sales you'd get by people upgrading to the newer version.

    Profits=$A-$B;

    when Profit is close to or less than zero, you need to drop it.

    For some of my specially-crafted, workflow applications, I actually require end users to use Mozilla or Firefox in certain places. In this case, the margins on the sales are high, the number of people using it is fairly limited, and the code being displayed is rather complex, so the cost of getting all the required features working in the legacy IE5/6 browsers was large, while the benefit of supporting doing so was minimal. I don't get asked about supporting IE, but I do get asked lots about Mac.

    You want feature N? Get Mozilla. Free download! Works on Windows, Linux, and Mac!

    --
    I have no problem with your religion until you decide it's reason to deprive others of the truth.
  10. Re:Does the vendor support it? by zerocool^ · · Score: 5, Insightful


    Yeah, what happened to "Degrade Gracefully".

    I mean, if you're entire business is a web app which requires CSS and modern javascript... then support what you need to support. I'd personally support firefox 1.0+, netscape 6.0+, IE 5.5+. That will encompas more than 99% of people; after that I think it's really diminishing returns (pre-IE5.5 means pre-windows98).

    I can't see supporting netscape 4.7 anymore. It was a good browser, but it was released in what, 1998? It's time to move on, folks - it's been 8 years. It doesn't support CSS and iframes properly and a whole bunch of stuff. Trade in your SparcStations and PackardBells for something modern, please.

    Just attempt to make it degrade gracefully.

    ~Will

    --
    sig?
  11. Re:Simple by Kumkwat · · Score: 5, Funny

    Opera: Give it a finger, no one is using it anyway


    I just read that using Opera, you insensitive clod.

  12. Let the browser "try" by EEBaum · · Score: 5, Insightful

    Whatever you end up doing, don't block browsers out with the horrid "Sorry, you do not have Internet Explorer 5.0 or better" message. Most of the sites that show that message, I can view just fine if I can manage to get past the browser-blocking "welcome" page. Let the browsers "try" to view the page, even if your "what kind of browser are you?" check thinks it shouldn't be able to. Even if it doesn't display perfectly, the user might still get the information they were looking for.

    --
    -- I prefer the term "karma escort."
    1. Re:Let the browser "try" by Anonymous Coward · · Score: 3, Insightful

      If the information the user is looking for is the price of a widget, an unsupported browser may display $1500 while in a supported browser the 00 are superscript and underlined, which means the price is really $15.00.

      That is so theoretical it boggles my mind.

      "That's odd, a $200 toothbrush? Could it be that my 300 year old browser is displaying that number incorrectly just like how every single other site I visit is displayed incorrectly?"

      When you start asking yourself theoretical questions like that you know that you've lost it. Imagine losing market share to fix this kind of theoretical problem.

  13. It's a math problem by aiken_d · · Score: 3, Insightful

    (total number of users) * (% of users using browser) = # of users who you won't be supporting.

    We have a two-tired philosophy: we don't test with browsers that have 5% market share, because we're a small business with limited resources. However, if a user reports a problem in a 5% browser that's easy to fix, we'll fix it. If it's a fundamental issue (lack of CSS support, etc), we'll just say "sorry, can't do it."

    If it's not fundamental but not easy to fix, we'll consider the direction that the browser's market share is going in. An IE 4 problem that would take a lot of time to fix is not as important as an Opera problem that will take a lot of time to fix, because any work we do to support IE 4 is less and less valuable every day; Opera work should be worth more or less the same in a year that it is now (yeah yeah, it may gain another .5% of total market share, but you get my point).

    As you get more users, that threshold drops. If you've got a million revenue-generating users, it only takes a fraction of a percentage drop in revenue to justify the resources needed to support an old browser.

    Cheers
    -b

    --
    If I wanted a sig I would have filled in that stupid box.
  14. Time horizon by vandelais · · Score: 3, Interesting

    I see a number of ?s/comments to the effect of 'IS it profitable?'

    The aspect of where both you and your users WILL BE in 18 months is not examined and what it would take for continuing support.

    Be forward looking, don't be like your 'whatdoyameanweranoutofcopiertoner' manager.
    -or-
    Bridges being built for tomorrow's traffic, not today's.

    --
    Game: Player 'Donald J Trump' now has AI skill level 'experimental'.
  15. Re:That completely depends by Arker · · Score: 4, Informative

    No, a flashier website will still work just fine on lynx, if it's done competently.

    --
    =-=-=-=-=-=-=-=-=-=-=-=-=-=-
    Friends don't let friends enable ecmascript.
  16. When Should You Stop Support for Software? by GeorgeMcBay · · Score: 3, Funny


    When Should You Stop Support for Software?


    Whenever I feel like it. GOSH!

  17. The Automotive Industry by Alien54 · · Score: 4, Interesting
    The automotive industry routinely carries parts for ten years. This ten year horizon has driven computers makers crazy.

    There was an article cited on Slash about the horrors of of this from the design side when automakers brought up their system requirements.

    So from this viewpoint, I would probably go for the ten year boundary on hardware and software, even though many software makers would like it to be as short as possible.

    Heck, Symantec has dropped support for many of their more recent products for a variety of reasons

    --
    "It is a greater offense to steal men's labor, than their clothes"
  18. Re:That completely depends by Simon+Garlick · · Score: 4, Insightful

    The gold standard in this case is WILL IT MAKE MONEY. If supporting users on IE3 costs more money than you'll get FROM users on IE3, don't do it. Simple.

  19. This question was asked too late. by shoolz · · Score: 4, Insightful

    I'm not trying to attack or troll, but seriously, you can't develop a product to beta stage, and then start questioning whether it should run on hardware/software X or Y.

    The correct way to go about any project is to identify the target audience and their technology, and develop accordingly. 12 years of bone-headed decisions have taught me this simple truth.

    Never build a house first and then question if the design was right or the tools were chosen correctly - identify what you need in a house first, design it accordingly, and then pick the tools to build it.

  20. Re:Simple by level_headed_midwest · · Score: 3, Funny

    I say first off code good, w3c-compliant HTML code that any browser should be able to render. Try to keep your website simple, elegant, and to the point. Keep the stuff that requires plugins to view (Java applets, Flash/Shockwave animations, Quicktime movies) to a bare minimum as they will take much longer to load and to tell the truth, a bunch of flashy-blinky stuff gets very annoying very quickly. Also, not everybody will have the plugins to view them (for example there is no Shockwave for Linux) and the others might not want to have to go out and get plugins just to view your site.

    And as for testing- look at your logs and see what people use and use those browsers to test. One caveat to that is that lots of browsers can spoof their headers to appear as other ones, except for IE, which neither can nor would ever need to. Commonly, they will appear as IE 6.0 on Windows XP but the browser could actually be anything. So if you see more than the occasional hit by a browser other than IE or Firefox, you kind of have to assume that there is some spoofing going on and should test with those browsers even if the apparent share may only be 1% on your site. I know because I do it- my user agent string usually says Safari 1.2.3 on a Mac PPC or Firefox 1.0 on Windows NT 5.1 (XP) when it is really Konqueror 3.5.0 on i686 Linux. The rendering engine in Konqueror is very similar to the one in Safari so the pages that are for Safari will work with Konqueror just fine. Firefox's GRE is a bit different than Konqueror/Safari KHTML, but it usually works OK. Some web sites tend to have heart attacks when they see the real user agent string and scream "UNSUPPORTED BROWSER!!!" "UNSUPPORTED OS!!!" "DANGER, WILL ROBINSON!!! DANGER!!!" but with a fake one in place, it works perfectly.

    Which also leads me to say- don't check browser/OS version for your site unless you are doing junk like using ActiveX that *requires* IE on Windows. It is a pain in the butt and as my user-agent string experience has proven, useless. Just don't do it.

    --
    Just "gittin-r-done," day after day.
  21. Re:That completely depends by LostBurner · · Score: 5, Funny

    Since when can the first post be modded 20% redundant?

  22. Re:Dependencies... by drakewyrm · · Score: 5, Insightful
    > IME, most users of Opera and Firefox have IE to fall back to if their
    > prefered browser doesn't work.

    In my experience, most users of Opera and Firefox won't fall back to IE if the website appears broken. You've already pissed them off by not working with their preferred browser. If you're not somehow handing bars of gold through the screen, they won't stick around longer than it takes to close the tab.

    --
    Batou: Hey, Major... You ever hear of "human rights"? Major: I understand the concept, but I've never seen it in action
  23. Re:That completely depends by SpaceLifeForm · · Score: 3, Interesting

    Simpler. Support current standards. Upgrade the users
    browser to support those standards. For free.

    --
    You are being MICROattacked, from various angles, in a SOFT manner.
  24. economics by b17bmbr · · Score: 4, Interesting

    I teach econ at the high school level (besides, it was my major!!). Here's an economic analysis: when the marginal cost of support exceeds the marginal benefit. I know that sounds crazy, but look at it this way. If it require 5 additional hours of programming to support say IE3, and your time is say $50 per hour, then you'd better get at least $250 of benefit from it. If someone is running IE3, that means they're on what, windows 95. If they haven't bought a new computer in 8 + years, then I guess that they aren't going to be buying alot of newer stuff anyways. And if they are content with their poor overall web experience, than accomodating them is probably not worth it. In fact, testing for lynx, et al., is also probably a waste of time. For purely philosophical reasons, adhering to standards is nice, but might not make sense from a practical standpoint. I do my wife's photo web site, and all I use is all CSS2 positioning, no tables, spacer gifs, etc. Why? When she does a shoot, for it to be worth her while someone better spend a few hundred dollars minimum. Checking her stats, 75% of her visitors used IE6 and 16% used Firefox. (6.6% Safari) Do the math. Is it worth it to support 3% of her visitors? If they can't even afford a relatively new computer, $500 maybe, then are they going to spend that on the session and portraits? Now, it depends on also I imagine the audience your addressing. If your site say is for old folks, then maybe they're running their kids old computer and it might have win98/IE4. But overall I'd say just figure out what it's going to cost you, and then what you're going to get from it. Really, if you turn off someone who isn't going to spend anyways, they really weren't a customer.

    --
    My problem? I was perfectly gruntled, until some numbnuts came by and dissed me.
  25. Depends on type of site. by WoTG · · Score: 4, Insightful

    I think that it depends entirely on the type of site.

    I like to give the example of a local company that was offering some sort of website video streaming software for smaller retail firms. About a year ago, I was forwarded an introductory letter with a demo URL. My default browser, Mozilla, did not load the page properly at all -- I didn't bother to see if it would work in IE or not. Simply put, if you are trying to sell web based software to technical users, you better have the site work in more than just IE.

    However, if it's a website of a smaller organization (that isn't technically orientated) that doesn't have the resources to spend on extensive compatibility testing, I will often cut them some slack and try IE.

  26. Crazy idea! by theLOUDroom · · Score: 5, Insightful

    Here's a crazy idea:

    Instead of coding for specfic browsers, write valid code!

    That was the whole intent of the web in the first place.

    I always find it ridiculous when a website talks about what browsers it "supports." Websites should not be browser-specfic.
    Also:
    USE AS FEW FEATURES AS POSSIBLE.

    I can't count how many times I've seen things that could have been done in simple HTML, done instead in flash, java, javascript, activex, etc. The more different technologies you use, the more you'll get screwed up by subtle glitches in their implementation.
    In short, pick a handful of good technologies and implement them properly. Support users by pointing them to software that is not broken.

    --
    Life is too short to proofread.
    1. Re:Crazy idea! by MoonBuggy · · Score: 3, Insightful

      Instead of coding for specfic browsers, write valid code!
      USE AS FEW FEATURES AS POSSIBLE.

      That's hardly an an answer to what the parent was asking. Good general advice, but not an answer. If you write a fairly simple page using valid HTML and CSS, it will almost definitely display correctly in up to date versions of Firefox, Opera and Konqueror/Safari. It should display correctly in IE6 too, but in my experience IE has worse rendering of completely valid code than Firefox overall, so it might need a few tweaks (while still remaining valid). IE5 has its own set of quirks with CSS, meaning more tweaks again. Lynx should be fine as long as you've got your content and your style data properly separated. When you start moving down into Netscape 4 and IE3 you're talking major reworking just to ensure it doesn't render vital bits of text at a location of -3000px or anything equally strange. Writing valid but more advanced CSS just compounds the problem - even Firefox and Opera start showing their differences there. Valid code is a good start, but it doesn't excuse you from the decision of which browsers you want to support.

  27. I love broad statements by jschottm · · Score: 5, Insightful

    Grandparent post:

    Do you use java, javascript, CSS, flash, CGI, etc., or not?

    Your post:

    No, a flashier website will still work just fine on lynx, if it's done competently.

    That's an awful broad statement to make in response to a post that gives five specific examples (some valid, some not). However, grandparent poster did not give sufficient detail, but I'm bored and will give some.

    1. Java. I fail to see how a visually oriented java based website will work "just fine" in lynx, regardless of comptence. Let's take a good example of when to use java - I have a number of server software packages that use java based websites to provide system/software monitoring capability, specifically real-time graphing of various things. Lynx cannot provide that. If I'm in text only mode for whatever reason, I'll monitor the servers using text utilities.

    2. Javascript. Moving into something I've written recently, I have a nice AJAX based based database front-end. It's meant to allow users on Windows, OS X, or Linux to graphically manipulate the database. It does so very nicely according to all of the users. Lynx cannot do what's required for the application. However, again, if I were trying to work the console, there are text based database front-ends. The key is to use the appropriate tool.

    3. CSS. OK, grandparent loses some points on this one, as most things you do with CSS don't affect lynx, in that it simply ignores the CSS and presents the content in plain format.

    4. Flash. I'll assume that the flash content is something that would be useful to the viewer and is, per your statement, "done competently." This eliminates sites that use Flash "incompetently" - doing things like using it for naviation and not providing html links to the same content and so on and so forth. This still leaves us with interactive meida, multimedia presentations, online tutorials that simulate applications, and various front-end software as discussed in points 1 and 2 that's also possible to do in flash. Unless you've convinced lynx to download the flash file and hand it off to flashplayer, none of these will work with lynx.

    5. CGI. I'll give you this one, as whether a website is using CGI or not really doesn't have much effect on whether a page will work on lynx or not. I suppose maybe the poster was getting at the fact that many of the clever CGI programmers these days also integrate java, javascript, or flash into their applications.

    So that gives you two points and grandparent three. I award the belt to him.

    Really, what it comes down to is evaluating who will be using your site, what they're doing, and what their needs and expectations are. Most of what grandparent posted about aren't used in a *needed* way on public websites, but are extremely useful when done correctly. You also need to evaluate what portion of your site is reasonable to have higher requirements for. Are you simply presenting information or pushing the envelope into increased user interaction?

    Google.com works with lynx, while google maps does not. Part of what google maps presents (directions, things near places) *could* be presented in lynx, but you know, doing so would take a very large amount of effort for virtually no payoff. I don't think google stockholders are loosing too much sleep over the issue.

    Similarly, my main website supports and has been tested in IE 5.x for Windows and Mac, IE 6, Mozilla, Firefox, Safari, Opera, Konqueror, Lynx, and Links. It looks virtually identical in all of them, but doing so required some horrible kludges that make the code harder to read and understand.

    On the other hand, my web applications (both internal and for public use) support IE 6, Moz/FireFox, and Safari. The code is clean and simple, and works in all three with the exact same code for the most part - there's very little that's coded based on which browser you're using (obviously, the AJAX calls are different). I could spend time devising wa

  28. Re:Dependencies... by sharpone · · Score: 3, Informative
    > In my experience, most users of Opera and Firefox won't fall back to IE if the website appears broken.

    This was true for me about 5 days ago (and for the most part still is). Then I found a neato extension called ie tab which lets me quickly right click and open a broken page in ie, in a firefox tab. This comes in especially handy for those pesky ActiveX admin control panels (trend micro administration, shoretel phone administration, etc). Also my bank has succesfully broken firefox support very recently, and while I'm confident they will fix it again, in the interim I'm happy to open thier site in an ie tab until the problem is fixed.

  29. By going for a multi-step solution. by Z00L00K · · Score: 3, Informative
    Some steps to consider.
    • Start with the HTML validator at W3C and use HTML 4.01 as your target for HTML. This will ensure that most browsers will be able to read your web pages.
    • If you are REALLY paranoid you may go for HTML 3.2, but personally I think that it is to stretch it too far.
    • Second stage is to check JavaScript version and make sure that you use the right version. E.g. <script language="javascript1.2" type="text/javascript"></script>.
    • O'Reilly's book JavaScript: The Definitive Guide is really helpful. It contains examples of how to determine JavaScript version if you need to use features from a newer JavaScript in some cases.
    • Whatever you do - DO NOT USE VBSCRIPT/JScript! (Except if you want to catch special quirks with IE).
    • Firefox contains two good tools that are really helpful when doing Javascript, the JavaScript console and the DOM Inspector. Of course - you will still need to verify against the older browsers too, but you will get a good start.
    • Use JavaScript to warn the user (in a nice manner) that there may be some problems with the browser used.
    • Be careful with the use of CSS. It is useful, and can make your HTML more 'clean'. The backside is that not all browsers handles CSS the same way.
    • When specifying sizes - always use specify the size unit.
      The following three alternatives produces different result, and it may also depend on your browser:

      <span style="font-size: 10px;">Hello</span><br>
      <span style="font-size: 10pt;">Hello</span><br>
      <span style="font-size: 10;">Hello (invalid - unit must be used)</span><br>

      Validate the CSS you are using through the CSS Validator

    • Double-check for script errors in other browsers since there are differences in the handling even though two different browsers may support the same scripting. For example - IE does not allow JavaScript to focus a hidden field while Firefox does.
    • Put almost all JavaScript source in an external file and don't embed it into the web page. This will make the page a lot cleaner! The same goes for CSS.
    • When specifying a font in CSS, give a list of fonts and end the list with one of the following; "Proportional", "Serif", "Sans-serif" or "Monospace". This will ensure that the page is displayed with a look&feel that resembles your intent.
    • ALWAYS specify the content type so that the correct character set is used! E.g.: <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">. W3C specifies that if it isn't given UTF-8 shall be used, but different browsers behaves differently here! Use ISO-8859-1 or UTF-8 even if your page is in plain US-ASCII, since both are supersets of US-ASCII and you may be using a symbol outside the US-ASCII range without realizing it!
    --
    If builders built buildings the way programmers wrote programs, then the first woodpecker would destroy civilization.
  30. Don't support the browsers by tacocat · · Score: 4, Insightful

    Get a clue. Don't support the browsers. None of them. Don't support the IE series or the Firefox browsers.

    Support to a set of standards.

  31. Don't support browsers, support standards by mcvos · · Score: 3, Insightful

    Well, that's the principle. Since 90% of the web surfers (less on tech-savvy sites) use IE, I suppose explicitly supporting the latest version of IE is a good idea. But other than that:

    • Stick to the standards.
    • Use the correct (X)HTML declaration and obey it.
    • Do all layout in CSS, don't muck around with tables (except for the 3-columns problem; there tables are acceptable, IMO).
    • Make sure it's still readable without CSS.
    • Don't use javascript unless you really have to. Try to make sure it still works without javascript.
    • Don't use flash, except for content. Using Flash for navigation is really, really bad, but if flash animations and games are the main purpose of your site, it's obviously okay to use it. You're targeting a smaller audience anyway.
    • Give every image an alt attribute. If it's a meaningless image, give it an alt="". Blind people like not hearing "image, image" all the time.
    • Don't use absolute font sizes; declare a "font-size: x%" in the body (I've read somewhere that 76% looks the same in all browsers) and use %s or ems from there. Forefox may be smart enough to change absolute font sizes, but IE isn't.
    • Avoid browser-specific hacks, unless you really, really have to. (Meaning IE is being stupid again.)

    I'm sure there's a lot more that every webdesigner should know, but this is a nice start.

  32. Here's what I do by porneL · · Score: 3, Interesting


    You don't have to drop support for any browser. HTML is backwards compatible and you can even write "AJAX" stuff that degrades nicely.

    1. Code website that works with no JS and no CSS support. It doesn't have to be pretty (no <font>, just semantic HTML) nor work smootly (just use regular forms).
    2. Add styling designed for modern browsers like Firefox, Opera, Safari and hide these stylesheets from junk like Netscape 4 (@import trick).
    3. Add CSS hacks for IE (use HTML conditional comments, because IE7 breaks most hacks)
    4. Modify document using JS and DOM to add handlers for all dynamic, ajaxy flashy stuff. That's progressive enhancement.

  33. Re:redundant != repeated by gronofer · · Score: 3, Funny
    Under those criteria, 99.9% of Slashdot posts should be moderated 'redundant'.

    I can only assume that not enough moderator points have been allocated to cover them all.