Reputation: 2729
Using the jquery validation plugin in the event of a textarea failing validation - required - it is not being highlighted. Looking for suggestions on how to make this happen.
Upvotes: 1
Views: 2639
Reputation: 9117
in the CSS for the plugin, there's only:
input.error { border: 1px dotted red; }
it should be
input.error, textarea.error { border: 1px dotted red; }
The problem actually happens in the Demo website for the plugin.
Upvotes: 3