Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is the <noscript> tag outmoded?

A lot of what I continue to read about graceful degradation applies to browsers that don't use JavaScript. But my own experience shows that it's no longer reasonable to expect a normal experience on the Internet without JS and CSS support. How much energy is it responsible to devote to degradation these days?

like image 314
Isaac Lubow Avatar asked Sep 02 '10 04:09

Isaac Lubow


1 Answers

Check out this article from a list apart. It talks about progressive enhancement instead of graceful degradation. Instead of degrading the experience for users without a particular technology or users with accessibility issues, it focuses on starting with the basics (html) and progressing the user experience by utilizing what technologies the user has available.

With progressive enhancement you'll never need a noscript tag, since you don't assume the user has javascript enabled to begin with.

like image 166
Ben Rowe Avatar answered Nov 13 '22 21:11

Ben Rowe