Determining which JavaScript/CSS browser features are required

Posted by Alan Neal on Stack Overflow See other posts from Stack Overflow or by Alan Neal
Published on 2010-06-06T22:08:42Z Indexed on 2010/06/06 22:12 UTC
Read the original article Hit count: 327

My website uses a variety of technologies, such as JQuery, new CSS definitions (e.g., moz-selection, -webkit-user-select), etc.

The site works perfectly with Google Chrome and Safari, but has some quirkiness in Firefox, IE, and some of the other browsers.

I want to write a script to check for necessary browser features but, with several thousand lines of code and CSS definitions, I'm not certain which features I should be looking for.

Is there some sort of online analysis (similar to how JSLint operates) that would tell me which features my script and CSS files need? Are there tools (like FireBug) that provide this info?

© Stack Overflow or respective owner

Related posts about JavaScript

Related posts about cross-browser