I\'m trying to get a form to submit in a roundabout way, since I need it to append new inputs before it submits. Since putting appends in the actual $(form).submit() function wi
You have some input with name="submit"
in your form, which overrides the native form.submit
(programmatically submits the form) method that is being called internally in jQuery. You need to change that to some other name.
See the Additional Notes paragraph in the documentation.
You can also use DOMLint to see other possible conflict issues.