עגלת קניות
סל הקניות שלך ריק
function updateCartButtonText() { document.querySelectorAll('#button-cart').forEach(function (btn) { // עוברים על צמתי הטקסט הישירים של הכפתור (לא נוגעים באייקון) btn.childNodes.forEach(function (node) { if (node.nodeType === Node.TEXT_NODE && node.textContent.includes('הוספה לסל')) { node.textContent = node.textContent.replace('הוספה לסל', 'הוסף להצעת מחיר'); } }); }); } // הרצה ראשונית updateCartButtonText(); // מעקב אחרי שינויים בדף (למקרה שהכפתור נטען מאוחר יותר או מוחלף דינמית) const observer = new MutationObserver(updateCartButtonText); observer.observe(document.body, { childList: true, subtree: true });
ס. 80940100
| דגם: | 22966 |