Kim,
Your beforeSubmit handler is passed a reference to the form data in array format. The array contains the data that will be serialized but you can modify its contents any way you wish within that handler. Mike
I have a password field that I'd like to encrypt before sending via ajaxSubmit (a simple MD5 call would suffice). I know I can use beforeSubmit to do things, but am not sure how to physically change a value. I've attempted various things with jqForm and formData to no avail -- is it a correct assumption that there's no way to have the beforeSubmit function be call by reference?