Skip to content

Instantly share code, notes, and snippets.

@nekoTheShadow
Last active August 29, 2015 14:13
Show Gist options
  • Save nekoTheShadow/8056f1f7c2c949194e1c to your computer and use it in GitHub Desktop.
Save nekoTheShadow/8056f1f7c2c949194e1c to your computer and use it in GitHub Desktop.
// 引数のうち、strにはPOSTしたい文字列を入れてください。
function httpPost(url,str){
xhr = new XMLHttpRequest();
xhr.open( "POST", url, false );
xhr.send(str);
return xhr.responseText;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment