Custom Search Box
document.getElementById(‘search-form’).addEventListener(‘submit’, function (e) {
e.preventDefault();
const searchQuery = document.getElementById(‘search-input’).value;
// Construct the URL by appending the search query to the feed provider’s link
const feedProviderLink = `https://buy-seek.com/ref/?token=NPAnQHpGRf&search=${searchQuery}`;
// Display the feed provider’s ads in an iframe
const resultsDiv = document.getElementById(‘search-results’);
resultsDiv.innerHTML = ``;
});