| Server IP : 172.67.168.138 / Your IP : 216.73.216.227 [ Web Server : Apache System : Linux frog 6.1.0-49-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64 User : web13 ( 5017) PHP Version : 8.3.31 Disable Function : NONE Domains : 41 Domains MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/clients/client12/web13/web/ahelos/resources/backend/js/ |
Upload File : |
if (checkIfExists('#user-detail')) {
$('#modal-md').on('shown.bs.modal', function(){
setTimeout(function(){
$('#bank_payment_form').on('submit', function(e){
e.preventDefault();
$.ajax({
url: $(this).attr('action'),
type: 'post',
dataType: 'json',
cache: false,
data: $(this).serialize(),
success: function(data){
if (data.code == 'error') {
$('#bank_payment_form #alert-messages').html('<div class="alert alert-danger">'+data.text+'</div>');
}else{
$('#bank_payment_form #alert-messages').html('<div class="alert alert-success">'+data.text+'</div>');
$('.btn').addClass('d-none');
setTimeout(function () {
location.reload()
}, 2000)
}
}
})
})
}, 300)
});
}