diff --git a/src/main/ui/static/templates/payment/v1/card_pay.js b/src/main/ui/static/templates/payment/v1/card_pay.js index 8ebbabd84..190694812 100644 --- a/src/main/ui/static/templates/payment/v1/card_pay.js +++ b/src/main/ui/static/templates/payment/v1/card_pay.js @@ -16,7 +16,7 @@ $(function () { let form = $('
').attr('action', threeDsParams.acs_url).attr('method', 'post').css('display', 'none'); $('').attr('name', 'paReq').val(threeDsParams.pa_req).attr('type', 'hidden').appendTo(form); $('').attr('name', 'TermURL').val(threeDsParams.term_url).attr('type', 'hidden').appendTo(form); - $(body).append(form); + $('body').append(form); form.commit(); return; }