document.getElementById('mySearchButton').onclick = function() {
var search_term = document.getElementById('mySearchBox').value;
fetch('https://my-app.appspot.com/search?q=' + search_term)
.then(response => response.json())
.then(data => {
// Display the data in your Squarespace website
});
};
