Currently I am using Unobtrusive validation on my site. So right now, when a form element is not valid, I display the error message (Configured from an attribute on the server) . What I want to do now is to also change the label and border of the text box so they go red when a form element is invalid, or green when valid.
Are there any extra attributes I can add to make this happen, or do I need to create my own validators that inherit from the standard ones, but add in the extra client side functionality?