Question:
There was a post this morning asking about how many people disable JavaScript. Then I began to wonder what techniques might be used to determine if the user has it disabled.Does anyone know of some short/simple ways to detect if JavaScript is disabled? My intention is to give a warning that the site is not able to function properly without the browser having JS enabled.
Eventually I would want to redirect them to content that is able to work in the absence of JS, but I need this detection as a placeholder to start.
Best Answer:
I’d like to add my .02 here. It’s not 100% bulletproof, but I think it’s good enough.The problem, for me, with the preferred example of putting up some sort of “this site doesn’t work so well without Javascript” message is that you then need to make sure that your site works okay without Javascript. And once you’ve started down that road, then you start realizing that the site should be bulletproof with JS turned off, and that’s a whole big chunk of additional work.
So, what you really want is a “redirection” to a page that says “turn on JS, silly”. But, of course, you can’t reliably do meta redirections. So, here’s the suggestion:
If you have better answer, please add a comment about this, thank you!
Source: Stackoverflow.com
Leave a Review