|
|
| | Ask HN: Why don't websites have 'text only' backup versions? | | 53 points by innovator116 on May 14, 2015 | hide | past | favorite | 59 comments | | I am a long time lurker here, though not a programmer, but a system admin and professional manager, open source enthusiast. A trend which I am seeing is that websites may use latest programming paradigms and designs to make them beautiful and stunning, yet they are so engrossed in javascript and 'awesome' interactive graphics and images, that a website cannot be viewed without javascript and images disabled. To save bandwidth or during slow wireless speeds, it is desirable to run browser without javascript and images disabled but websites don't have any kind of 'text only' versions for such use. In an ideal situation, every website should have 'text only' version which can be opened in CLI browser like Links. As an example, this startup http://qfusionlabs.com/ website looks like blowing a bubble without javascript and images disabled.
Edit: I am glad that Hacker News works perfectly without javascript and images disabled! Why can't all of discrete websites be like this. |
|

Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact
|
I think frameworks have inverted things: the easiest approach these days is to load the default config of some framework/CMS, which will make heavy use of Javascript/images/CSS/etc. in order to entice developers to use it (otherwise, why use a framework at all ;) ). In this world, turning off a feature takes more effort than leaving it on, and we end up with ideas like special "text only" alternatives.
I think there's definitely a burden on the developers of frameworks to make them degrade as gracefully as possible. Of course, this isn't always possible (especially those designed to be completely in client-side JS), but in those instances where it is possible, it can have a large impact. For example, if the developer of some popular Wordpress theme spent a little extra effort on graceful fallbacks, it would improve the situation for all sites using that theme.
Disclaimer: I used to develop a CMS with crazy-strict adherence to, among other things, accessibility standards ;)