Is there any module out there that could be used by my Django site to tell whether the client browser supports HTML5 and what features are supported?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
Sadly no. This is something that you'll need JavaScript client to do. Especially something like http://modernizr.com/ One way to do it would be to run modernizr and send results to back end. If you would be really optimistic, you could build a list of User-Agents and decide upon that. But good luck with keeping which things works in which version of Chrome and Firefox. |
|||||
|