Element unfolding in JavaScript
Let's unfold an element to full height:
elem.style.height = elem.scrollHeight + 'px';
And now unfold an element to full width:
elem.style.width = elem.scrollWidth + 'px';
Given an element and a button. Unfold the element to its full height when the button is clicked.