30.08.2023, 13:18
Dann sollte es so funktionieren:
Code:
const
footerVat = document.querySelector('.footer-vat p'),
productsPrice = document.querySelectorAll('.product-price');
let addTxt = '';
if (footerVat.textContent.includes('Alle Preise inkl.')) {
addTxt = ' inkl. 19% MwSt.';
}
if (footerVat.textContent.includes('exkl.')) {
addTxt = ' zzgl. 19% MwSt.';
}
productsPrice.forEach(item => {
item.insertAdjacentHTML('beforeend', addTxt);
});
Glaube denen, die die Wahrheit suchen, und zweifle an denen, die sie gefunden haben.
(Andrι Gide (1869-1951), frz. Schriftst., 1947 Nobelpreis)
(Andrι Gide (1869-1951), frz. Schriftst., 1947 Nobelpreis)