Is there a software or script that can detect the internet browser functionalities? (e.g. Support CSS3, HTML5, etc)
feedback
|
closed as off topic by grawity, random♦ Oct 29 '11 at 3:08
Questions on Super User are expected to generally relate to computer software or computer hardware, within the scope defined in the faq.
|
Modernizr does just this.
| |||||||||||
feedback
|
|
CSS3 and HTML5 are a set of features that browsers will support fully, in part, or not at all. So what you really need to do is determine whether the specific features you need are present. You can do this for many features using the jquery.support module. | |||
|
feedback
|
|
No, since most of it is only visible to the end user (Do you really want an executable to pop up a few hundred yes/no dialog boxes? "Can you see it now? [Yes] [No]"). What can be done is a best guess based on the user agent of or JavaScript objects in the browser and the known properties of each. | |||||||||||
feedback
|