How can I submit jQuery form object (not ajax)?
I try form.submit() and it doesn't work.
I create the form by
tempform = $("<form method='post'></form>");
tempform.attr("action", "abc.aspx");
and then append some form elements into it.
tempform.submit();