I'm trying do define a series of very simple and low level Javascript "tests". The results should allow me to determine the level of Javascript support on a device and based on that to decide wether to load or not load any external javascript files at all (basically enable JS on my site).

Does anybody know about some research that has been done in this direction? I'm trying to determine which tests to run:

What is considered the smallest common denominator to be able to decide wether a device does or does not have "acceptable" Javascript support.


This question is a bit blurry — I know, apologies for that. I'm currently not sure where to even start and and any input would be highly appreciated.

link|improve this question

"Acceptable" depends on what features you need (which can usually be tested for) and the performance you get (which is much harder to test). – Quentin Feb 2 at 9:53
If a baseline test includes AJAX support, and the browser doesn't include it, why reject the browser if you don't use that functionality? Test for the features you want to use. – Matt Feb 2 at 9:55
I don't have any specific features in mind (yet). If I would, I could easily test against them. These features are what I'm looking for. A list of "things" I'd expect a browser with at least acceptable Javascript support to be able to handle properly. – polarblau Feb 2 at 10:02
You seem to be working backwards. Start with a problem. Look for a feature that will help solve it. Don't look to see what features you can use and then hunt for problems. – Quentin Feb 2 at 10:09
I agree. Nevertheless this particular case requires me to work backwards. I guess what I'm looking for is "experiences". – polarblau Feb 2 at 10:12
feedback

closed as not constructive by Quentin, Greg, Matt, Don Roby, bmargulies Feb 3 at 1:39

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

1 Answer

There isn't one really. "Acceptable" javascript support depends on what you want your javascript to do.

For your particular case what you could do is run some dummy code which uses javascript features that are essential for your site. Wrap it in a try/catch block, and if it throws an error don't load/run the rest of your script. Modernizr also does a great job of testing support for certain features.

Having said all this, if javascript is present then there are polyfills available for most features these days so your solution should maybe be to look at including an extra javascript file to fix the hole rather than to disable javascript.

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.