نوشیدنی

آب معدنی کوچک
برند دسینی
10,000
تومان
برند خوشگوار
42,000
تومان
document.addEventListener('DOMContentLoaded', function() { function replaceAddFor() { document.querySelectorAll('button.buy').forEach(btn => { btn.childNodes.forEach(node => { if (node.nodeType === 3 && node.textContent.includes('Add for')) { node.textContent = 'افزودن '; } }); }); } // اجرا هنگام بارگذاری اولیه replaceAddFor(); // مشاهده تغییرات در کل بدنه برای دکمه‌های جدید (مثلاً بعد از باز شدن مودال) const observer = new MutationObserver(() => { replaceAddFor(); }); observer.observe(document.body, { childList: true, subtree: true }); });