I'm wondering why there is a difference in jQuery Validate plugin's default handling of <input>
vs. <textarea>
. In the demo below, notice that the required
class makes the <input>
required but not the <textarea>
.
<form>
<input class='required' />
<textarea class='required' ></textarea>
<button value='submit'>submit</button>
</form>
$('form').validate();