I\'m trying to implement html5 into a form, but I came with a problem when I submit the form through jquery and try to use the html5 \"required\" attribute.
Here is
Working demo http://jsfiddle.net/3gFmC/
Hope this will help :)
:)
code
$('#btn_submit').bind('click', function() { $('input:text[required]').parent().show(); // do whatever; });