I have a form created in HTML that posts to an external domain
<form method="post" action="someExternalDomain.com/submit">
I want to submit it with this (I can't use JQuery because of the same-origin policy) but capture the response from the server using JQuery. How would I do this?
Thanks in advance.