make form submit on new tab using jquery

Solutions on MaxInterview for make form submit on new tab using jquery by the best coders in the world

showing results for - "make form submit on new tab using jquery"
Simeon
06 Feb 2018
1<form target="_blank">
2    <a href="#">Submit</a>
3</form>
4
5<script>
6    $('a').click(function () {
7        // do something you want ...
8
9        $('form').submit();
10    });
11</script>
12
similar questions
queries leading to this page
make form submit on new tab using jquery