coding
pavithra soma - April 9, 2008 - 11:02
im very new to work in drupal,i dono any thing abt drupal. i want to validate a form using AJAX.
validating could be done via AJAX,the fields which have errors(set by form_set_error) should be blinking.
this is my scope of the project is as follows:
Impement the verification of the forms using AJAx.
Error fields should be highlighted should be blinking.
Previous verification should be cleared.
NOTE:
pls help me out,i mant coding part related to my required.

Server-side validation still required
The request is outside of my skill set, but I thought I'd mention that AJAX-based validation requires client-side scripting, which can be turned off (in the least worrisome case) or tampered with.
It's never safe to rely solely on anything outside of your direct control to ensure that the data is valid, so you'll still need validation running on the server side when the form is submitted. If the AJAX-based validation still provides some benefit after your server-side validation is implemented, then by all means go ahead with it.