Any ideas on how to get a div\'s height without using jQuery?
I was searching Stack Overflow for this question and it seems like every answer is pointing to jQuery\'
One option would be
const styleElement = getComputedStyle(document.getElementById("myDiv")); console.log(styleElement.height);