Баннер5
Баннер5
previous arrow
next arrow
Shadow

Продукція

Торгові марки

Свіжі новинки

Not Found

Apologies, but the page you requested could not be found. Perhaps searching will help.

document.addEventListener("DOMContentLoaded", function () { const input = document.getElementById("mp-search"); const results = document.getElementById("mp-results"); let timer; function search() { clearTimeout(timer); timer = setTimeout(() => { let data = new FormData(); data.append("action", "mp_search"); data.append("q", input.value); fetch(mp_ajax.url, { method: "POST", body: data }) .then(res => res.json()) .then(data => { console.log("AJAX DEBUG RESPONSE:", data); if (data.status === "error") { results.innerHTML = `
${data.message}
`; return; } let html = ""; if (!data.posts || data.posts.length === 0) { html = `
(debug)
`; } else { data.posts.forEach(post => { html += `
${post.title}
${post.link}
Thumb: ${post.has_thumb}
`; }); } results.innerHTML = html; }) .catch(err => { console.error("AJAX ERROR:", err); results.innerHTML = `
AJAX error (. console)
`; }); }, 300); } if (input) { input.addEventListener("input", search); } });