Skip to content

Instantly share code, notes, and snippets.

@whitmanc
Created June 22, 2012 14:43
Show Gist options
  • Save whitmanc/2973169 to your computer and use it in GitHub Desktop.
Save whitmanc/2973169 to your computer and use it in GitHub Desktop.
jQuery force HTTP PUT method
$.ajax({
...
beforeSend: function(xhr)
{
xhr.setRequestHeader("X-Http-Method-Override", "PUT");
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment