Hacker News new | ask | show | jobs
by eadmund 820 days ago
> are you browsing the web in 2024 with javascript disabled?

I use uMatrix to disable most Javascript by default, and enable sources one-by-one if necessary for a web app. There’s no need to use Javascript on a blog post, certainly not to dynamically load in HTML text and images, so I generally don’t even bother to enable it, and just hit the back button.

The way I look at it is, a web interaction is a conversation: my browser asks a server for a resource, and the server returns it. This makes sense for static HTML: ‘server, please send me this blog post’; ‘sure, here you go, and here are some images or fonts or whatever to make it prettier.’ This, OTOH, feels just wrong: ‘server, please send me this blog post’; ‘sure, here is this list of instructions for you to follow to assemble to blog post.’

Web apps are fine, Javascript is fine for that. Forcing the use of Javascript to do what HTML already can do natively is just wrong.