I\'m having an issue identical to this poster: Jquery problem with height() and resize()
But the solution doesn\'t fix my issue. I have three stacked divs, and I want to
To see the window height while (or after) it is resized, try it:
$(window).resize(function() { $('body').prepend('' + $(window).height() - 46 + ''); });