boyd4715
boyd4715

Reputation: 2729

jquery validation plugin textarea

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

Answers (1)

Francisco Aquino
Francisco Aquino

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

Related Questions