If I have a form like this,
<form action="/Car/Edit/17" id="myForm" method="post" name="myForm"> ... </form>
how can I submit it without redirecting to another view by JavaScript/jQuery?
I read plenty of answers from Stack Overflow, but all of them redirect me to the view returned by the POST function.
Best Answer
You can achieve that by redirecting the form's
action
to an invisible<iframe>
. It doesn't require any JavaScript or any other type of scripts.