views:

2196

answers:

1

Hi All!

I recently used jquery and the form validation plugin on a form we're testing at our community college:

Right off the bat, (if viewed with FF, Opera, Safari, etc.) when you click submit w/o entering any values, you get some nice error messages in the form, the intended effect. However, if you're using IE7, when you click submit you get the server-side validation that our backend developer is partial to. Why does IE7 ignore the jquery validation and jump to the server-side validation? Can I do anything to get IE to behave or am I stuck with what I have?

Thanks for whatever insight you can offer.

+2  A: 

Line 51

}, //end messages

Remove comma.

And use IE Debug Bar.

Sergii