hi ryanstreet,

    You can use $.('xxx').serialize() to collect all the input element
into an array,or else you may try json,like

json = '{
    "a": "{\"p\":\"cc\",\"m\":\"aa\",\"s\":\"bb\"}",
    "b": 2,
    "c": 3,
    "d": 4,
    "e": 5
}';

$.post(url,
            {data:json},
            function() { //xxx});

hth,
George

On Sep 10, 5:14 am, ryanstreet <[EMAIL PROTECTED]>
wrote:
> Does anyone know of a way to pass multiple form fields into one remote
> call in the validate script in Jquery?
>
> Any help appreciated.
>
> rules: {
>                         Field1: {
>                               required: true,
>                              remote: "/path/to/script.php"
>                         }...

Reply via email to