Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
why not use ajax and modernizer to report back once the page has loaded? – Timmy O'Mahony Aug 1 '12 at 22:54
@TimmyO'Mahony - I am, indeed, using modernizr. But what I need here is a way to detect HTML5 support prior to the generation of HTML response – tamakisquare Aug 1 '12 at 22:56
1  
Does it have to be the first response? You could keep track of their moderinzer settings in the session once they've loaded a page. Otherwise it's going to guess work: you'll have to use User Agent's etc. which isn't reliable at all (it's similar to the problem of trying to guess what resolution the user has for serving up mobile/tablet pages) – Timmy O'Mahony Aug 1 '12 at 23:09
@TimmyO'Mahony - I guess that's the best I can do for now. Thanks. – tamakisquare Aug 1 '12 at 23:17

1 Answer

up vote 3 down vote accepted

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.

share|improve this answer
1  
if 'ie' in user_agent.lower(): return false; – Snakes and Coffee Aug 2 '12 at 0:56

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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