This post is from a low-reputation account and contains an unverified outbound link. Be cautious before clicking external links.
RE: RE: Bucks
You are viewing a single comment's thread from:

RE: Bucks

Words
1
Reading
1 min
Listen
Play
6y

TPc

`

paypal.Buttons({ style: { shape: 'pill', color: 'silver', layout: 'vertical', label: 'buynow',
  },
  createOrder: function(data, actions) {
      return actions.order.create({
          purchase_units: [{
              amount: {
                  value: '1'
              }
          }]
      });
  },
  onApprove: function(data, actions) {
      return actions.order.capture().then(function(details) {
          alert('Transaction completed by ' + details.payer.name.given_name + '!');
      });
  }

}).render('#paypal-button-container');

`
@terux101: TPc ` | Ecency