Skip to content

Instantly share code, notes, and snippets.

@nickolayrusev
Created August 7, 2013 07:04
Show Gist options
  • Save nickolayrusev/6171833 to your computer and use it in GitHub Desktop.
Save nickolayrusev/6171833 to your computer and use it in GitHub Desktop.
jquery ajax POST request
$.ajax({
type:'POST',
contentType:'application/json',
url:'http://localhost:8080/domain/player',
data:JSON.stringify({firstName:"iavan",lastName:"a"}),
success:function(data,status,xhr){
console.log(xhr.getAllResponseHeaders());
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment