<svg width="770" height="588" viewbox="-40 135 770 588"
const input = document.querySelector('.inputprice');
const container = document.querySelector('.inner');
const itemSelector = '.box';
const buttonSelector = `${itemSelector} .btn`;
const valueSelector = `${itemSelector} .box-title`;
container.addEventListener('click', ({ target: t }) => {
const item = t.closest(buttonSelector)?.closest(itemSelector);
if (item) {
input.value = item.querySelector(valueSelector).innerText;
}
});
// или
const onClick = el => input.value = el.textContent.trim();
container.querySelectorAll(buttonSelector).forEach(function(n, i) {
n.addEventListener('click', onClick.bind(null, this[i]));
}, document.querySelectorAll(valueSelector));
n141 + s14 + n142
как строки. Если n141 и n142 являются числами - то не надо преобразовывать их в числа, а лучше оставить в виде строк.define( 'DISALLOW_FILE_EDIT', true );
define( 'DISALLOW_FILE_MODS', true );
<?php
if (ICL_LANGUAGE_CODE == 'ru') {
echo "<div class='promo-bar-content'><a href='#'><strong>Русский</strong></a></div>";
} elseif (ICL_LANGUAGE_CODE == 'en') {
echo "<div class='promo-bar-content'><a href='#'><strong>English</strong></a></div>";
} elseif (ICL_LANGUAGE_CODE == 'uk') {
echo "<div class='promo-bar-content'><a href='#'><strong>Українська</strong></a></div>";
} elseif (ICL_LANGUAGE_CODE=='pl') {
echo "<div class='promo-bar-content'><a href='#'><strong>Poland</strong></a></div>";
}
?>