AI Test

document.addEventListener("DOMContentLoaded", function() {
const flowchart = document.getElementById("flowchart");
flowchart.innerHTML = `

How do you plan to use your Lang BBQ Smoker?



`;
});

function nextQuestion(id) {
document.querySelectorAll(".question").forEach(q => q.classList.add("hidden"));
document.getElementById(id).classList.remove("hidden");
}

function showResult(id) {
document.querySelectorAll(".question, .result").forEach(q => q.classList.add("hidden"));
document.getElementById(id).classList.remove("hidden");
}