button post code example
Example: send get request with button to endpoint
form.addEventListener('submit', (event) => {
event.preventDefault(); //stop reload
let input = document.querySelector('input');
let method = 'GET';
let endpoint = `request url ${input.value}`;
xhr.open(method, endpoint);
xhr.send(); //if in the link what you looking for this send will be empty!!!
});