I'm using jQuery.validate v 1.6.0 to validate my forms.
One of my database fields is limited to 1000 chars. I added a validation to the corresponding textarea like this: In the header of my page, I add
$('form.validate').validate();
Inside my page, I declare:
<form method="post" class="validate" action="Save">
<textarea name="description" minlength="15" maxlength="1000" id="description" class="required"></textarea>
<input type="submit" value="Save">
</form>
The issue I'm encountering is that jQuey seems to count the number of chars involved in a 'new line' differently as my database.
When I type exactly 1000 chars without new lines, all goes well, and the validation works. If I type 1000 chars with some new lines, jQuery allows the POST to happen, but my database refuses the insert/update, because the data is too big.
Any hints would be appreciated.

