Я хочу получить высоту элемента от document
, я пытаюсь получить его с const header = document.getElementsByClassName(myClass)
.Но есть некоторые проблемы в преобразовании Element
в HTMLElement
.Есть ли способы построить HTMLElement
из string
или получить attributes
как offsetHeight
из HTMLCollection
?
const myheader = document.getElementsByClassName(myClass);
console.info(myHeader[0].offsetHeight);