I have a form that I'm adding to with jquery .attr values and then call submit:
$form.attr("method", "POST");
$form.attr("action", "test.jsp");
$form.attr("target", "blank");
$form.submit();
I was wondering if there is a way for me to get the response back from the jsp file that I call?
something like
$form.submit().response?
Thanks