Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do you handle very old browsers on your site?

We have a non-profit web site that got about 5 million hits in May. Of those, about 5,700 were from IE 5.x or lower; about 4,000 were from folks with Netscape 4.x or lower. We know that the current site's layout works for newer browsers and we're testing it on IE6 as well (along with Chrome, Opera, Safari, and Firefox). How do you handle the folks with the older browsers? Because of jQuery libraries and such, the pages might not function correctly on those old browsers.

Is there an easy way to show a text-only version on browsers that can't handle the CSS and jQuery goodies? How do large sites handle this sort of thing? I've used the @embed to hide the stylesheet from Netscape 4.x, but not sure beyond that.

like image 212
Alex Avatar asked Apr 14 '10 21:04

Alex


People also ask

How will my website look on old browsers?

You need to download different browser emulators for different browsers, but by using BrowserStack Live you can access all the browsers and the browser versions that you need in a single click. Testing on a real device cloud is reliable and gives accurate results.

What issues can an outdated browser cause?

Older web browsers have much less security than the newest. Because of this you're more likely to have hackers gain access to your system, download viruses and malware and even get hold of your credit card details if your browser is outdated.

What is the oldest browser still in use?

Notes: Lynx is a customizable text-based web browser for use on cursor-addressable character cell terminals. Presently, it is the oldest web browser still in general use. It was launched in 1992 and still has active development.


2 Answers

You should not keep the old browsers as your main priority - just keep the content readable on them, and maybe add a helpful banner that explains they are using an outdated browser.

However, you don't have to focus on getting the layout look 100% same on browsers that old, that's just waste of time. As long as the content is available and they can navigate the site, it should be fine.

like image 172
Dragory Avatar answered Oct 07 '22 16:10

Dragory


Make sure that all content is accessible and readable from a browser like Lynx, and no content requires Javascript to read & access.

I would suggest designing for disability accessibility and seeing if that would produce those results as well - kill two birds with one arrow.

like image 30
Paul Nathan Avatar answered Oct 07 '22 17:10

Paul Nathan