Easy HTML5 Validation Fallback for Older Browsers using Modernizr and JQuery Validation Plugin

So I heard that you hate IE. Also I heard that you love HTML5. Is that true? Great, I feel the same about IE. So here is quick fallback script for html5 validation in older browsers. You will need three things for that.

First is Modernizr javascript library. It allows you to detect which features are supported by your browser and which aren’t.

Second is JQuery. I think you are already familiar with it, so there is no need to tell you why it’s awesome and how to use it.

Third is JQuery Validation Plugin. It provides mechanism for form validation based on input classes.

So now only things you need to do is to convert html5 validation attributes to html classes and run validation plugin. Here is small CoffeeScript snippet:

# initialize plugin on page ready
$ ->
  unless (Modernizr.input.required)
    $('form').find('input[required]').each ->
      $(this).attr('class', 'required ' + this.getAttribute('type')).removeAttr('required')

    $('form').each ->
      $(this).validate()

# check if form is valid by hand
$('form').valid()

And as always, Have a nice day! :)

Comments