Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is graceful degradation in the absence of JavaScript still useful?

When even mobile browsers have JavaScript, is it really necessary to consider potential script-free users?

like image 419
leeand00 Avatar asked Aug 12 '09 16:08

leeand00


1 Answers

Yes. Your web pages aren't just consumed by people: they're consumed by search engines, and crawlers, and screenscrapers. Most of those automatic tools don't support Javascript, and essentially none are going to generate UI events or look at deeply nested AJAX data. You want to have a simple static HTML fallback, if nothing else then so that your web pages are well indexed by the search engines.

Forget the crazies who disable Javascript; think of the robots!

like image 76
Nelson Avatar answered Oct 12 '22 23:10

Nelson