I have several child elements that will have different heights and have the capability of changing heights after page load, as the contents inside them will be dynamic, some of them will take up 50% of the parents width and some will take up 100% of the parents width. What I need is to find the height of all the child elements when they are laid out correctly and apply it to the parent element and for the height to be reapplied if there is any change on the child elements. The reason I need to apply the height to the parent element is to make another piece of jQuery to work.
I've created a small example http://cdpn.io/hrbjw and an example showing the code http://codepen.io/julianvk/pen/hrbjw
If this isn't clear enough just comment on what part is confusing.