Skip to content

Instantly share code, notes, and snippets.

@SnowyPainter
Created February 17, 2022 03:47
Show Gist options
  • Save SnowyPainter/5e9f0ea7963333614ff9b56598fa5057 to your computer and use it in GitHub Desktop.
Save SnowyPainter/5e9f0ea7963333614ff9b56598fa5057 to your computer and use it in GitHub Desktop.
const postAjax = (url, data) => {
const ajax = new XMLHttpRequest();
ajax.open("POST",url, false);
ajax.setRequestHeader("Content-Type", "application/json");
ajax.send(JSON.stringify(data))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment