jQuery 1.2 and IE 5

Ye' old general discussion board. Basically, for everything that isn't covered elsewhere. Come here to shoot the breeze, shoot your mouth off, or whatever suits your fancy.
This forum is not for asking programming related questions.

Moderator: General Moderators

Post Reply
User avatar
JellyFish
DevNet Resident
Posts: 1361
Joined: Tue Feb 14, 2006 7:18 pm
Location: San Diego, CA

jQuery 1.2 and IE 5

Post by JellyFish »

...I'm a bit shocked. jQuery 1.2 doesn't support IE 5? This is sad. According to W3, 1.5% of users on the internet us IE 5, just as much Opera users. If their are 1 billion people on the net, that 1.5% is 15 million. That's a lot of people, not as much as the other 985 billion but still a lot.

Is jQuery doing the right thing in doing this? What browsers does prototype support? Apparently, mootools is doing the same thing, but I couldn't find any support information about prototype at prototypejs.org.

What's the explanation?
User avatar
onion2k
Jedi Mod
Posts: 5263
Joined: Tue Dec 21, 2004 5:03 pm
Location: usrlab.com

Post by onion2k »

According to W3, 1.5% of users on the internet us IE 5, just as much Opera users.
On the biggest site I maintain we had a little under 2 million page views last month and 0 visitors using IE5.
User avatar
Kieran Huggins
DevNet Master
Posts: 3635
Joined: Wed Dec 06, 2006 4:14 pm
Location: Toronto, Canada
Contact:

Post by Kieran Huggins »

There is absolutely nothing preventing an IE 5 user from using a newer browser. In fact, even Microsoft strongly suggests upgrading for security reasons, and there's an upgrade path to at least IE 6 in just about every case.

Besides, jQuery promotes "progressive enhancement" - a technique that guarantees at least a functional experience for the end user regardless of javascript availability. This includes situations where the library is unsupported (IE <= 5, Netscape <= 4), or not loaded at all (spiders, screen readers, text-only browsers).

Dropping IE 5 support was a good move, IMO.
User avatar
anjanesh
DevNet Resident
Posts: 1679
Joined: Sat Dec 06, 2003 9:52 pm
Location: Mumbai, India

Post by anjanesh »

Kieran Huggins wrote:In fact, even Microsoft strongly suggests upgrading for security reasons, and there's an upgrade path to at least IE 6 in just about every case.
Just recently, Microsoft has removed the genuine Windows validation check for IE7 installation inorder for *everyone* to to be able to install IE7.
User avatar
JayBird
Admin
Posts: 4524
Joined: Wed Aug 13, 2003 7:02 am
Location: York, UK
Contact:

Post by JayBird »

Kieran Huggins wrote:There is absolutely nothing preventing an IE 5 user from using a newer browser. In fact, even Microsoft strongly suggests upgrading for security reasons, and there's an upgrade path to at least IE 6 in just about every case.

Besides, jQuery promotes "progressive enhancement" - a technique that guarantees at least a functional experience for the end user regardless of javascript availability. This includes situations where the library is unsupported (IE <= 5, Netscape <= 4), or not loaded at all (spiders, screen readers, text-only browsers).

Dropping IE 5 support was a good move, IMO.
Yep, i'll echo that. My biggest site had no views from IE5.
Post Reply