I noticed that when I use the .ajaxSubmit button to post a form, it doesn't send the value of the submit button in the form data. For example:
<form name="form1"> <input type="text" name="foo" value="bar" /> <input type="submit" name="button" value="click" /> </form> If I call jQuery('form1').ajaxSubmit(); The value sent to the server is foo=bar and not foo=bar&button=click. Is there an easy way to get this to work? It's needed by my backend server.