Skip to content

Instantly share code, notes, and snippets.

@xyulex
Created December 2, 2015 07:59
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 xyulex/d83b6b711ed364a99844 to your computer and use it in GitHub Desktop.
Save xyulex/d83b6b711ed364a99844 to your computer and use it in GitHub Desktop.
JQUERY: $.ajax
$.ajax({
url: "languageDropdown.php",
data: "contentId=" + contentId,
type: "POST"
success: function (data) {
// What to do when is OK.
},
}).done(function() {
// What to do when is over.
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment