AI-enjij Startserie

Van idee naar heldere AI-prompt

Jouw AI-prompt

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

document.addEventListener("click", function (e) { const btn = e.target.closest("#copy-btn"); if (!btn) return; e.preventDefault(); const el = document.getElementById("prompt-output"); const text = (el && (el.value || el.innerText)) ? (el.value || el.innerText) : ""; if (!text.trim()) return; navigator.clipboard.writeText(text).then(() => { const original = btn.innerText; btn.innerText = "Gekopieerd ✓"; setTimeout(() => btn.innerText = original, 1200); }); }, true);
(function () { const params = new URLSearchParams(window.location.search); const id = params.get("id"); const el = document.getElementById("prompt-output"); if (!el) return; if (!id) { el.innerText = "Geen prompt gevonden."; return; } el.innerText = "Even je prompt ophalen…"; fetch("https://hook.eu2.make.com/6whgq06i25oo29it9godygysth6ls745?id=" + encodeURIComponent(id)) .then(r => r.json()) .then(data => { el.innerText = (data && data.prompt) ? data.prompt : "Prompt is leeg."; location.hash = "resultaat"; }) .catch(() => { el.innerText = "Er ging iets mis bij het ophalen van je prompt."; }); })();