I know that CakePHP has very good validation out of the box, but I want to perform live JS validation on my form before it is submitted.
I've played with the jquery validation plugin, which is exactly the kind of thing I want for the front end. (Its for a newsletter subscribe form in a modal box).
The problem is, CakePHP's validation will redisplay the form containing the error messages if my validation fails. I don't need this, I just want to return false or redirect should it fail server side.
Does anyone know of any jquery validation that will sit nicely alongside the cakephp automagic form validation, and give me the best of both worlds? Thanks.