For now, I just want to use the <audio> and <video> tags and maybe try out the drag and drop features since these are supported by Firefox 3.6. The project will just be a test project, not necessarily for production.
5 Answers
I wanted a bit more control over the inputs and the ability to use postback on the controls, so I built a suite of HTML 5 Controls. It's got canvas and just about all of the new input types. As was said earlier, one big limitation is the browser your user brings to the site. The inputs will fail gracefully to Input Type="text".
Comments
Change the DOCTYPE on your master page to
<!DOCTYPE html>
and ignore any validation errors you get. I think you'll be ok.
3 Comments
tvanfosson
I don't ignore them all, but I grant that there a lot that do get ignored. In fact, I can remove most all of them with a judicious use of `<% if (false) { %>...include CSS links...<% } %> in my partials if I really care.
Gabe
Found a HTML5 validation schema for VS 2008 which should eliminate most of the errors. stackoverflow.com/questions/1084194/… (first answer)