I'm wondering because right now, my website is very, very badly broken in 4, and I'm going to have to make a separate version of the web site to fix it. At this point in time, is it still necessary to support Netscape 4?

Dani AI

Generated

Short answer: for a public site in late 2005, supporting Netscape 4.x is rarely worth the cost. Exceptions exist (locked corporate desktops, kiosks, intranets, or a narrowly defined user base still on legacy machines). As pointed out, the decision should be driven by the actual audience; for 's case the next step is a quick measurement and a cost/benefit check based on real traffic.

A short checklist for deciding:

  • Measure real usage from server logs or analytics. Look specifically for Netscape tokens and be careful to exclude MSIE when scanning for "Mozilla/4" since lots of older UAs start with that string.
  • If Netscape 4 is effectively nonexistent, drop support and focus on standards and accessibility.
  • If a small but nonzero group remains, provide a simple fallback (static HTML or a legacy stylesheet) rather than trying to make the modern design work perfectly in NS4.

Quick, practical commands and a tiny JS feature check to help implement the plan:

# quick log scan (UNIX)
grep -i 'netscape' access.log | wc -l

# broader scan, avoid matching MSIE
grep -i 'mozilla/4' access.log | grep -vi 'msie' | wc -l
if (document.getElementById) {
  // modern DOM
} else if (document.layers) {
  // Netscape 4 fallback
} else {
  // minimal fallback
}

Notes and cautions: UA parsing can be noisy — test results manually. Netscape 4 lacks a standard W3C DOM (uses document.layers) and has very limited CSS support, so graceful degradation and a simple, usable markup-only fallback are usually the fastest, lowest-risk fixes. If maintenance cost for a legacy branch outstrips the tiny user share, a clear "legacy view" link or redirect to a simplified page is a pragmatic compromise.

I'm wondering because right now, my website is very, very badly broken in 4, and I'm going to have to make a separate version of the web site to fix it. At this point in time, is it still necessary to support Netscape 4?

I think it depends on your audience at this point. I would say for the web at large it is probably no longer needed. If your particular site is for a group of users that are unable to update their borwsers or have a reason to use older browers then you may have to keep supporting it.

Also you should be able to get some website stats on what percentage of the users on your site stil use ns 4.

Ok, thanks a lot. :) I'll see if my site needs it.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.