AI-enjij Promptbouwer

Van idee naar heldere AI-prompt

Jouw AI-prompt

Kopieer deze prompt en plak ’m in je AI-tool

const params = new URLSearchParams(window.location.search); const id = params.get("id"); const el = document.getElementById("prompt-output"); if (!el) { alert("Ik kan het element 'prompt-output' niet vinden. Check de ID in Carrd."); } else { el.innerText = "Debug: id = " + id; } if (id) { fetch("https://hook.eu2.make.com/6whgq06i25oo29it9godygysth6ls745?id=" + id) .then(res => res.json()) .then(data => { el.innerText = "Debug: prompt ontvangen ✅\n\n" + (data.prompt || "[prompt leeg]"); location.hash = "resultaat"; }) .catch(err => { el.innerText = "Debug: fetch error ❌\n" + err; }); }