Advertisement
angelgoitia

Untitled

Sep 30th, 2024
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function openCreditCard(){
  2.     $("#token_payment").val("");
  3.     $("#creditcard-container").slideUp(500);
  4.     $.ajax({
  5.         "type": "GET",
  6.         "url": $("#url_card").val(),
  7.         "data": { "APIKey" : $("#txtAPIKey").val() , "Token" : $("#txtToken").val() , "Culture" : $("#lang").val() },
  8.         "success": function (jsonResponse) {           
  9.            
  10.             const removeSpecificTagsRegex = /<link href="https:\/\/gateway\.merchantprocess\.net\/securecomponent\/v2\/content\/bootstrap\.min\.css" rel="stylesheet" \/>|<script src="https:\/\/ajax\.googleapis\.com\/ajax\/libs\/jquery\/1.8.3\/jquery\.min\.js"><\/script>/gi;
  11.             const cleanResponse = jsonResponse.replace(removeSpecificTagsRegex, '');
  12.  
  13.             $("#creditcard-container").html(cleanResponse);
  14.             $("#creditcard-container .col-lg-5.col-md-6").removeClass("col-lg-5 col-md-6").addClass("col-12");
  15.             $("#creditcard-container").slideDown(500);
  16.            
  17.             $("#card-ui-component-txt-creditcard-holder").attr("placeholder", $("#cardHolderName").val());
  18.             $("#card-ui-component-txt-creditcard-number").attr("placeholder", "XXXXXXXXXXXXXXXX");
  19.             $("#card-ui-component-btn-confirm").text($("#btn_pay_text").val());
  20.  
  21.             setTimeout(function() {
  22.                 $(".jp-card-name").html($("#full_name").val());
  23.             }, 1000);
  24.         }
  25.     });
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement