I'm using HTML5 validation in simple_form. In all the modern browsers the HTML5 validation works properly and I assumed on older browser it would allow the fallback of the server side validation I have in place.

However in IE7 & 8 the form simply doesn't submit with no validation error.

The only 2 solutions I've found is to use Modernizr which is a bit overkill or what I've done which is switch off HTML5 validations.

My question is why is IE have using required="required" and does anyone have a better solution?

link|improve this question

75% accept rate
2  
The fact that the form doesn't submit on IE7 & IE8 points to an error on your code. Post the code, or a jsfiddle, or something. – OhCaN Feb 16 at 19:23
Besides, even IE 9 does not support the required attribute. The real problem is probably quite different from the assumed problem. – Jukka K. Korpela Feb 16 at 22:25
Hmmm possibly, but unlikely it being auto generated by my simple form gem. The only thing that it adds is required="required". Simple form have an issue raised and highlight it is an IE problem – DJ Forth Feb 17 at 9:41
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.