I'm using ASP.NET MVC (v1.0) on an app and want to integrate simple client-side form validation. IE: Numeric-Only fields, required fields, etc.
Is there good, and potentially eye-candy fancy, method of validating in jQuery on the client that will cancel form submission on failed validation?
I've perused and experimented with quite a few of the jQuery form plugins available on the jQuery site already. But I've not found one yet that hijacks the form submission; MVC always routes to my controller action without validating.