עגלת קניות
סל הקניות שלך ריק
document.addEventListener("DOMContentLoaded", function () {
// יוצרים את הפופאפ אך לא מציגים אותו בהתחלה
const popup = document.createElement("div");
popup.id = "added-to-cart-popup";
popup.style.cssText = `
background: #790083; color: white; padding: 15px; border-radius: 10px; max-width: 300px;
position: fixed; top: 20px; left: 50%; transform: translateX(-50%);
box-shadow: 0 5px 15px rgba(0,0,0,0.2); z-index: 9999; text-align: center; font-size: 16px;
display: none;
`;
popup.innerHTML = `
✅ המוצר נוסף לסל!
מעבר לסל
המשך בקניות
`;
document.body.appendChild(popup);
// לחיצה על קישור "המשך בקניות" תסתיר את ההודעה
popup.querySelector('#continue-shopping').addEventListener('click', (e) => {
e.preventDefault();
popup.style.display = 'none';
});
// בוחרים את כל הכפתורים עם onclick שמכיל cart.add
const addButtons = document.querySelectorAll("button[onclick*='cart.add']");
addButtons.forEach(btn => {
btn.addEventListener("click", () => {
// מציגים את ההודעה
popup.style.display = "block";
// מסתירים אחרי 5 שניות
setTimeout(() => {
popup.style.display = "none";
}, 5000);
});
});
});