Hi All
There are of course many validation scripts that can validate data in textboxes.
However, are there any that can validate data that is pasted into textarea boxes? Has to be browser friendly
I'll have visitors who will paste in pipe-delimited flatfiles that I need to check for unallowed characters, length of fields, capitalize all letters, and some other stuff.
yo|ee|oh|yo|ho
||and|toto|too?
antee em|uncle henry|||
- allowed_chars: a-zA-Z0-9*&$#@!=+-()?/.'",
- field_lengths: 20|20|20|20|20 (meaning, the total chars in the field cannot exceed field_lengths, including spaces)
- capitalize all letters (though lower case could be submitted, all lower case would be capped)
Many thanks
