O,

You can add parameters using the beforeSubmit callback:

$('#myForm').ajaxSubmit({
   beforeSubmit: function(a, $f, o) {
       a.push({name: 'mode', value: '1'});
   }
});

Mike


On 6/16/07, wyo <[EMAIL PROTECTED]> wrote:

Is it possible to pass additional parameters to the AJAX call? On my
page I have a get value (e.g. mode=1) which I'd like to pass to the
called server function. Or do I have to store the value in a hidden
input field so it's passed with the other fields?

O. Wyss


Reply via email to