Skip to content

Instantly share code, notes, and snippets.

@A-Programmer
Created November 16, 2017 21:17
Show Gist options
  • Save A-Programmer/3d64473a486ca671e8798b6ac488dfcb to your computer and use it in GitHub Desktop.
Save A-Programmer/3d64473a486ca671e8798b6ac488dfcb to your computer and use it in GitHub Desktop.
ajax post
$(dosument).ready(function()
{
$.ajax()
{
url:'url of action',
data:{json:data},
type:'POST',
success: function()
{
alert('done');
},
error: function()
{
alert('error');
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment