I have following form:
Name
If you want to submit the form manually, you have to bypass jQuery bound event. You can do it in either of these ways:
$('#form_id')[0].submit();
or
$('#form_id').get(0).submit();
[0] or get(0) gives you the DOM object instead of the jQuery object.