Skip to content

Instantly share code, notes, and snippets.

@jhonnrodr
Created August 22, 2014 01:32
Show Gist options
  • Save jhonnrodr/6314957f855a2ec183c7 to your computer and use it in GitHub Desktop.
Save jhonnrodr/6314957f855a2ec183c7 to your computer and use it in GitHub Desktop.
$Ajax asynchronous HTTP (Ajax) request
$.ajax({
type: "POST",
url: "/charge",
data: { userName: cardholdername, CardNum: CardNum, months: months, year: year, CVNum: CVNum, Amount: Amount }
}).done(function(msg) {
$("h2.modal-title").text(msg.title);
$("modal-body").text(msg.message);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment