Skip to content

Instantly share code, notes, and snippets.

@dlachowicz-mw
Created November 21, 2015 23:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dlachowicz-mw/4ece7de396b7d8f7d758 to your computer and use it in GitHub Desktop.
Save dlachowicz-mw/4ece7de396b7d8f7d758 to your computer and use it in GitHub Desktop.
$(document).ready(function () {
$('#submitPayment').click(function () {
// Prevent the user from double-clicking
$(this).prop('disabled', true);
// Create the payment tokencreate
CayanCheckout.createPaymentToken({
success: successCallback,
error: failureCallback
})
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment