Hacker News new | ask | show | jobs
by warfangle 4792 days ago
For what it's worth, Google is still usable in lynx.
1 comments

Most sites are. Lynx is just the web without CSS or JS.
Most sites these days are inoperable without JS.
Not really. Name me a major site that doesn't work at all without JS.
Dropbox - https://www.dropbox.com/

In Firefox 20.0.1, with Javascript disabled, after the login the home listing has a "The Dropbox website require JavaScript" text.

[EDIT: Clickable, more info]

Well, Dropbox is an interesting example. If you have no JS, you probably can't download much either.
Why not? As it seems, JS is not doing anything that isn't do-able with a <a href="...file..." target="_blank"> - as soon as the browser gets a file that it cant render (.zip, ...), it will download it.

The magic is in the server, which must set the MIME type to application\octet-stream or something similar, so the browser doesnt try to render certain browser-rendable files (.htmls, .pdfs, ...)

http://stackoverflow.com/questions/3749231/download-file-usi...