IPost/js/httppost.js
2025-04-29 00:29:00 +02:00

8 lines
187 B
JavaScript

window.post = function (url, data) {
return fetch(url, {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify(data),
})
}