KeySlim Drops Quiz
Drop 10lbs Before Thanksgiving?
Question 1/3: How much weight do you want to lose before Nov 28?
Please choose one option!
92%
Perfect candidate for KeySlim Drops!
Just 1 drop under tongue daily = 10–15lbs gone by Thanksgiving (based on 1,247 users).

Black Friday Deal: 50% OFF + Free Bottle!
Claim My Drops Now
*Results not typical. Individual results may vary. FTC compliant.
const questions = [ { q: "How much weight do you want to lose before Nov 28?", opts: ["5–10lbs", "10–15lbs", "15–20lbs", "20lbs+"] }, { q: "How many meals do you eat per day?", opts: ["1–2", "3", "4+", "I snack all day"] }, { q: "Have you tried weight loss drops before?", opts: ["Yes", "No", "Tried pills/gummies"] } ]; let step = 0; function load() { document.getElementById("q").innerText = questions[step].q; const opts = document.getElementById("options"); opts.innerHTML = ""; questions[step].opts.forEach((o, i) => { const div = document.createElement("div"); div.className = "option"; div.innerText = o; div.onclick = () => select(i); opts.appendChild(div); }); document.querySelector(".bar").style.width = ((step + 1) * 33) + "%"; document.getElementById("error").style.display = "none"; } function select(i) { document.querySelectorAll(".option").forEach((el, idx) => { el.classList.toggle("selected", idx === i); }); document.getElementById("error").style.display = "none"; } function next() { const selected = document.querySelector(".option.selected"); if (!selected) { document.getElementById("error").style.display = "block"; return; } step++; if (step < 3) load(); else showResults(); } function showResults() { document.getElementById("quiz-page").classList.remove("active"); document.getElementById("results-page").classList.add("active"); const urlParams = new URLSearchParams(window.location.search); const clickId = urlParams.get('cid') || urlParams.get('clickid') || 'nocid'; const finalUrl = `https://getkeyslimdrops.cc/vsl1/?aff=said589&click_id=${clickId}`; document.getElementById("cta-btn").href = finalUrl; document.getElementById("cta-btn").addEventListener("click", () => { new Image().src = `https://adx.ppcmate.com/event/conversion?id=7966&clickid=${clickId}&value=0`; }); } if (window.location.hash === "#results") { showResults(); } else { load(); }

Disclaimer: *Results not typical. Individual results may vary. FTC compliant.

KeySlim Drops Quiz
Drop 10lbs Before Thanksgiving?
Question 1/3: How much weight do you want to lose before Nov 28?
92%
Perfect candidate for KeySlim Drops!
Just 1 drop under tongue daily = 10–15lbs gone by Thanksgiving (based on 1,247 users).

Black Friday Deal: 50% OFF + Free Bottle!
Claim My Drops Now
*Results not typical. Individual results may vary. FTC compliant.
// === QUIZ LOGIC === const questions = [ { q: "How much weight do you want to lose before Nov 28?", opts: ["5–10lbs", "10–15lbs", "15–20lbs", "20lbs+"] }, { q: "How many meals do you eat per day?", opts: ["1–2", "3", "4+", "I snack all day"] }, { q: "Have you tried weight loss drops before?", opts: ["Yes", "No", "Tried pills/gummies"] } ]; let step = 0, answers = []; function loadQuestion() { document.getElementById("q").innerText = questions[step].q; const opts = document.getElementById("options"); opts.innerHTML = ""; questions[step].opts.forEach((o, i) => { const div = document.createElement("div"); div.className = "option"; div.innerText = o; div.onclick = () => selectOption(i); opts.appendChild(div); }); document.querySelector(".bar").style.width = ((step + 1) * 33) + "%"; } function selectOption(i) { document.querySelectorAll(".option").forEach((el, idx) => { el.classList.toggle("selected", idx === i); }); } function nextQuestion() { const selected = document.querySelector(".option.selected"); if (!selected) return alert("Please choose one!"); answers.push(selected.innerText); step++; if (step < 3) loadQuestion(); else showResults(); } // === SHOW RESULTS + PASS CLICK ID === function showResults() { document.getElementById("quiz-page").classList.remove("active"); document.getElementById("results-page").classList.add("active"); // Get click ID from URL const urlParams = new URLSearchParams(window.location.search); const clickId = urlParams.get('cid') || urlParams.get('clickid') || 'nocid'; // === REPLACE WITH YOUR DIGISTORE LINK === const baseLink = "https://getkeyslimdrops.cc/vsl1/#aff=said589"; // ← YOUR OFFER ID const affId = "said589"; // ← YOUR AFF ID const finalUrl = `${baseLink}?aff=${affId}&click_id=${clickId}`; document.getElementById("cta-btn").href = finalUrl; // Optional: Fire pixel document.getElementById("cta-btn").addEventListener("click", () => { new Image().src = `https://adx.ppcmate.com/event/conversion?id=7966&value={value}`; }); } // === AUTO-SHOW RESULTS IF #results IN URL === if (window.location.hash === "#results") { showResults(); } else { loadQuestion(); }

Disclaimer: *Results not typical. Individual results may vary. FTC compliant.