Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
<span class="qodef-e-price-value qodef-e--value"> от <span style="float: right">₽</span>12000 </span>
const el = document.querySelector('span.qodef-e-price-value.qodef-e--value'); el.removeChild(el.childNodes[0]);
const getRoomPrice = document.querySelectorAll('span.qodef-e-price-value.qodef-e--value'); for (let everyPrice of getRoomPrice) { everyPrice.removeChild(everyPrice.childNodes[0]); }
document.querySelectorAll('span.qodef-e-price-value.qodef-e--value') .forEach((el) => el.removeChild(el.childNodes[0]));