tamakisquare
tamakisquare

Reputation: 17077

Django: Detect client browser support of HTML5

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?

Upvotes: 2

Views: 887

Answers (1)

Jure C.
Jure C.

Reputation: 3080

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.

Upvotes: 3

Related Questions