max_height = 0;
let cur_height = 0;
let item = document.querySelectorAll(".table__row");
for (let i = 0; i < item.length; i++) {
cur_height = item[i].clientHeight;
if(cur_height > max_height) {
max_height = cur_height;
}
}
$(".table__row").height(max_height);
по моей логике это должно быть так:
document.querySelector(".table__row").height(max_height);
но не работает.
document.qS().style.height = `${maxHeight}px`
конструктивно
вот так: document.querySelector(".table__row").style.height = max_height;
Это правильное решение.
базару зиро, тут все красиво и работает, сори
Обсуждают сегодня