views:

324

answers:

1

Dear All

I am using Validation Plugin.in JQuery.

My Code in IE gives Error as

'$.metadata' is null or not an object.

My Partial Code.

  $(document).ready(function() {
       $.validator.setDefaults({
          submitHandler: function() {
               alert("OK");
          }
       }); 

       $.metadata.setType("attr", "validate"); 
       $("#email").validate();
});

How to Rectify the error.

My Plugin Link http://bassistance.de/jquery-plugins/jquery-plugin-validation/

+2  A: 

It seems that you didn't include metadata plugin. Please review code of your page.

zihotki