Advertisement
quanth

UCH_form

Nov 24th, 2017
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.  var datapost = {};
  2.         datapost.__RequestVerificationToken = $('input[name="__RequestVerificationToken"]').val();
  3.         $.ajax({
  4.             url: '/ICO/GetPrice',
  5.             data: datapost,
  6.             type: "get",
  7.             contentType: "application/json;charset=utf-8",
  8.             beforeSend: function () {
  9.                
  10.                
  11.             },
  12.             success: function (data) {
  13.                 $('#div-buy-uch').remove();
  14.                 $('body').append(data);
  15.                 $('#div-buy-uch').modal('show');
  16.                 //self.Price(localPrice);
  17.  
  18.                 $('#btn-bitcoin').click();
  19.                
  20.             },
  21.             error: function (data) {
  22.  
  23.             }
  24.         });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement