Can posted input values on onbegin of ajax.beginform be modified? I have to modify values of some of the input fields after the form is submitted.
onbegin
ajax.beginform
$('#myform').submit() won't work on IE. If there is any validation, you can try to create a fake validation method to collecting form data.
like Jquery.validaton below:
jQuery.validator.addMethod("fakeMethod", function (value, element) { YOUR DOM CODE HERE!!! return true; }, "");