I am trying to submit a form and then the browser has to close. But I cannot understand why it will not work. For some reason, it will close the window, but it does not submit the form.
JavaScript
x
6
1
$('.cancel-confirm').on('click', function () {
2
$(this).closest('form').submit();
3
alert('Submitted - your window will now close');
4
window.close();
5
});
6
JavaScript
1
6
1
<form asp-action="CancelActivity" method="post" class="absolute ff f-36 foreground-white" style="right:5em; top:20%;">
2
<input type="hidden" name="ActivityID" value="@item.Activityid" />
3
<input type="hidden" name="status" value="@(item.IsCancelled == true ? "false" : "true")" />
4
<button class="btn ff f-22 background-transparant foreground-black cancel-confirm" type="submit"> @(item.IsCancelled == true ? "Genaktiver" : "Deaktiver") </button>
5
</form>
6
Tried to submit the form with jQuery and then close the window
Advertisement
Answer
I see you are using jQuery, you can use ajax
JavaScript
1
8
1
$('.cancel-confirm').on('click', function () {
2
$.post( "yourprocessor.php", { name: "Your Name", sex: "Male" })
3
.done(function( data ) {
4
alert('Submitted - your window will now close');
5
window.close();
6
});
7
});
8
then process your submitted form.