Required form field support

Required form field support

Anyone wondering if the JQM team has any plans on supporting/gracefully degraded the html5 required property on form fields?

I use alot of popup forms here and there and having a built in tooltip for required fields (or other failed validations) would kick ass.

That could be something like this:

<input type="password" id="password" data-validation-message="Please enter a password with more than 6 characters, 1 number and 1 capital letter" pattern="^.*(?=.{7,})(?=.*[a-z])(?=.*[A-Z])(?=.*[\d@!#$%^&*+-=]).*$" />

Field validation is somewhat tricky in the small confines of the mobile world.

:)