Create No-JavaScript friendly sites
11–20 of 129 posts
Re: Create No-JavaScript friendly sites
#12On a side note, the first example the author uses for a menu alternative[0] is highly obnoxious. The "unobtrusive" example assumes that your page is written in PHP but doesn't declare this assumption up front, it leaves it until half way into the article. The example is not usable in a static website that won't properly handle a POST request. So the JS example is still vastly superior for many cases.
Re: Create No-JavaScript friendly sites
#13I'd like to say that ship has sailed, but in this case it's more like the last rocket launched, Krypton was destroyed, and the last partisans of NoScript are trapped in the Dark Zone, or whatever the thing with General Zod was called. Not that big of a Superman fan.
Yup, not enabling javascript is akin to using an outdated browser for better or for worse.
Disclaimer: I have JS enabled.
Re: Create No-JavaScript friendly sites
#14I absolutely agree that JS is over-used, but for anything other than very static content I generally am not interested in kowtowing to the strict "no JS" folks. Javascript has become a fundamental part of the web, and for the same reason I won't put in extra work to make my sites work in IE, I also will not put in extra work to make my sites work for (a vanishingly small number of) people who pre-emptively block one…
Re: Create No-JavaScript friendly sites
#15The sad reality is that the enormous popularity of SPA frameworks like React and Angular make this possibility a small fraction of important sites — e.g. I don’t know if any banking or investment website that works without JavaScript.
Maybe this is less important as app-culture supplants such sites.
Re: Create No-JavaScript friendly sites
#16Re: Create No-JavaScript friendly sites
#17I absolutely agree that JS is over-used, but for anything other than very static content I generally am not interested in kowtowing to the strict "no JS" folks. Javascript has become a fundamental part of the web, and for the same reason I won't put in extra work to make my sites work in IE, I also will not put in extra work to make my sites work for (a vanishingly small number of) people who pre-emptively block one…
What percentage of city bus riders or public restaurant visitors do you think use the wheelchair ramp?
Re: Create No-JavaScript friendly sites
#18People like interactive sites which give immediate visual feedback for actions. Aside from the tracking stuff it's a better user experience, so it's unlikely to go away, especially if the demand for no-js is tiny.
Re: Create No-JavaScript friendly sites
#19So far the biggest drawback is not being able to do a payment flow with Stripe Checkout without requiring JS on _my_ service, because Stripe.js is required to redirect a user to the checkout session.