I\'m validating a form using the new unobtrusive validation features in ASP.NET MVC 3.
So there is no code that I have written to setup jQuery validate to start vali
The unobtrusive library will attach the validator on all forms, so you have to replace the submitHandler this way:
$("form").data("validator").settings.submitHandler = function (form) { alert('submit'); form.submit(); };