forked from Anjaliavv51/Retro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
menu.js
26 lines (22 loc) · 1.15 KB
/
menu.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// adding items from menu to cart
document.addEventListener('DOMContentLoaded', function () {
var menuContainers = document.querySelectorAll('.menu_container');
menuContainers.forEach(function (container) {
container.addEventListener('click', function (event) {
if (event.target.classList.contains('butt')) {
var item = event.target.closest('.items');
var itemName = item.querySelector('h3').textContent;
var itemPrice = item.querySelector('p').textContent;
alert("Item added to cart successfully");
// Retrieve existing cart items from localStorage
var cartItems = JSON.parse(localStorage.getItem('cartItems')) || [];
// Add new item to the cart array
var newItem = { name: itemName, price: itemPrice };
cartItems.push(newItem);
// Save updated cart back to localStorage
localStorage.setItem('cartItems', JSON.stringify(cartItems));
window.location.href = "cart.html";
}
});
});
});