3

I’m looking for my application (it’s a sort of CRM) to include a web-based GUI that supports old browsers like IE 5.

Is there any good client-side cross-browser framework that supports old browsers? I don’t need something fancy with effects and animations.

Thanks.

Sampson
  • 265,109
  • 74
  • 539
  • 565
user63898
  • 29,839
  • 85
  • 272
  • 514
  • 1
    javascriptframework? "i don't need something fancy with effects and animations" --> what do you need then? – Natrium Jan 27 '10 at 07:57
  • 1
    [ActiveWidgets](http://www.activewidgets.com/general.faq/supported-browsers.html) and [GlowJS](http://www.bbc.co.uk/blogs/bbcinternet/2009/07/glow_technical_overviwe.html) support IE5.5 and Safari 3. – Paul Sweatte Aug 03 '12 at 00:42

3 Answers3

9

For your specific needs check out David Mark's "My Library". It doesn't have the popularity of jQuery or Extjs but for absolute cross-platform portability, nothing beats it. It was developed from best practices gathered from comp.lang.javascript.

He claims:

...after spending a week testing, I am pleased to announce that Cinsoft supports My Library in the following browsers:

All of them.

But seriously, we've tested successfully in:-

  • IE 5-8
  • FF 1-3.5
  • Safari 2-4
  • Opera 5-10
  • Netscape 3-9
slebetman
  • 109,858
  • 19
  • 140
  • 171
5

I don’t think that’s a problem anyone’s interested in solving (i.e. web-based gui frameworks for older browsers like IE 5).

It’s much harder on older browsers because they lack features, have more bugs, and run JavaScript slower. And there’s less point, because those browsers are disappearing.

If I were you, I’d build a CRM application that’s so good, companies still on IE 5 will install Firefox just to use it.

Paul D. Waite
  • 96,640
  • 56
  • 199
  • 270
  • 3
    -1 For the facebook & youtube crowd, yes you can think this way. But for developing enterprise solutions you should be aware that the *majority* of *big-paying-customers* out there are still on very old browsers and usually have IT departments that disallow installing other browsers. That's the *majority*, not _minority_. It's only safe to have this opinion if you're not working in the Enterprise market or don't care about making money. – slebetman Jan 27 '10 at 08:39
  • 3
    Bull. Make the world’s best CRM application. Sell it to all the companies that aren’t stupid enough to think IE 5’s a good idea. Companies that remain that stupid will eventually die off. Majorities are just minorities that got popular. – Paul D. Waite Jan 27 '10 at 09:14
1

DynAPI and lib.js are two of the oldest frameworks. They support IE5 and Netscape browsers. There are menu utilities and small abstraction libraries as well.

Paul Sweatte
  • 24,148
  • 7
  • 127
  • 265