• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Liutauras Vilda
  • Ron McLeod
Sheriffs:
  • Jeanne Boyarsky
  • Devaka Cooray
  • Paul Clapham
Saloon Keepers:
  • Scott Selikoff
  • Tim Holloway
  • Piet Souris
  • Mikalai Zaikin
  • Frits Walraven
Bartenders:
  • Stephan van Hulst
  • Carey Brown

Latest Netscape and IE version?

 
Ranch Hand
Posts: 145
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Does anyone know? Which one is better? How can I make
sure a web application can run on both?
 
author
Posts: 15385
6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Netscape 7.1 and might be the last one.....
IE6.X
There are more browsers then the two you mentioned
Mozilla has a few versions and also Opera...
There are other browsers too...

How to code for cross browser...
stick to DOM...
aka: do not use document.all or document.layers....
Eric
 
Ranch Hand
Posts: 5093
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
yes there are other browsers but their marketshare is small enough to make it not worth the investment making sure your code will work for them.
Mozilla SHOULD be fully compatible with Netscape as both share the same engine.
IE has over 90% of the market cornered, Netscape/Mozilla another 7% or so.
Of the remaining 2-3% roughly half is covered by Opera.
That leaves just 1% of the market for all other browsers combined. Unless you're specifically targetting those people (GSM phones and PDAs for example) it is not economically feasible to write code for them.
In fact, it may not be feasible to write code to ensure compatibility with anything but IE!
What I do is use only W3C standard code and check if it works in IE. If it does, it goes life and any browser that doesn't support it has a problem I don't care about (had they been standards compliant the code would have worked).
Of course if you're coding for an intranet where the company dictates Netscape as a browser for 50% of the machines and IE for the rest (I've seen it, different departments used different browsers due to corporate politics) the situation is different.
 
Sheriff
Posts: 67752
173
Mac Mac OS X IntelliJ IDE jQuery TypeScript Java iOS
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
An attitude, in my opinion, that helps ensure IE's domination of the market for years to come.
Of course, one has to make sure that things work in IE due its market dominance, but just coding to W3C standards usually won't accomplish that since MS has shown no interest in improving IE's W3C compatibility.
As a conscientious web developer interested in improving the web, I make sure that my web apps work in all W3C compliant browsers (Gecko-based browsers, Opera and Safari being my principle targets), and then do all the gritty work to make things work in IE as well.
 
That new kid is a freak. Show him this tiny ad:
Smokeless wood heat with a rocket mass heater
https://woodheat.net
reply
    Bookmark Topic Watch Topic
  • New Topic