jQuery Validate Plugin IE Error

jQuery Validate Plugin IE Error

Hi,

I am having some problems with the Validate Plugin in IE. It is fine in all browsers except IE, it errors and the script does not run.

My Code:
  1. $("#feedbackform").validate({
  2.   //set the rules for the fild names
  3.   rules: {
  4.   name: {
  5.   required: true,
  6.   minlength: 2
  7.   },
  8.   email: {
  9.   required: true,
  10.   email: true
  11.   },
  12.   message: {
  13.   required: true,
  14.   minlength: 2
  15.   },
  16.   },
  17.   //set messages to appear inline
  18.   messages: {
  19.   name: "",
  20.   email: "",
  21.   message: ""
  22.   }
  23. });
  24.  
The error says:

"Expected identifier, string or number on Line 24 Char 1."

Any help would be greatly appreciated!

Regards,

Harry