0

I'm trying to find a shim which will stop Firefox 3.5 - 3.6 (under Prism) to stop submitting a form when the input is set to required.

I've just tried using Afarkas's webshim but that hasn't worked either.

Knu
  • 14,806
  • 5
  • 56
  • 89
James
  • 5,137
  • 5
  • 40
  • 80

1 Answers1

0

Try out the Web Forms polyfills on the Modernizr list.

https://github.com/Modernizr/Modernizr/wiki/HTML5-Cross-Browser-Polyfills

This one appears to do the trick: http://ericleads.com/h5validate/

ceejayoz
  • 176,543
  • 40
  • 303
  • 368
  • That seems to only highlight that it's required, not stop on submit? – James Feb 06 '12 at 14:53
  • It looks like it fires events you can handle, according to the wiki. Really, this would be easy to put together yourself via jQuery with a submit handler. – ceejayoz Feb 06 '12 at 15:02