I knew there is a JQuery form validation, but if there is no form, how to validate with Jquery? Say, there is a
<textarea></textarea>
, I want to send the text via AJAX instead of form. How to validate before sending?
|
I knew there is a JQuery form validation, but if there is no form, how to validate with Jquery? Say, there is a
, I want to send the text via AJAX instead of form. How to validate before sending?
| ||||
feedback
|
|
The | |||
|
feedback
|
|
Why not just validate it yourself. If there is certain requirements that you want to check, before the submission, or attach an onblur event to the I would opt for the onblur event as that would enable you to let the user know quickly if there is a problem. | |||
|
feedback
|
|
So you check the value before you send through AJAX.
| ||||
|
feedback
|