Skip to content

Instantly share code, notes, and snippets.

Created June 2, 2016 14:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save anonymous/96a45fd87696b9bd7f042a8b689b2e47 to your computer and use it in GitHub Desktop.
Save anonymous/96a45fd87696b9bd7f042a8b689b2e47 to your computer and use it in GitHub Desktop.
$("#editFormSaveBut").on({
click: function(){
$.ajax({ type: "POST",
url: "/blog/editPage.php",
data: {id : "saveBut", formTitle : $("#editFormTitle").val(), formText : $("#editFormText").val() },
success: function(data) {alert(data)},
error: function(data) {}
});
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment