ffunction navigateToItem(item) { localStorage.setItem("selectedItem", item); window.location.href = "item_page.html"; } window.onload = function() { const selectedItem = localStorage.getItem("selectedItem"); if (selectedItem) { document.getElementById("selected-item").innerText = `Selected: ${selectedItem}`; document.getElementById("suggestions").innerHTML = `
Paneer Butter Masala
Garlic Naan
`; } }; function goToSummary() { const customInput = document.getElementById("custom-input").value; const summary = `Item: ${localStorage.getItem("selectedItem")}, Custom: ${customInput}`; localStorage.setItem("orderSummary", summary); window.location.href = "summary_page.html"; }