I am building a high-content WordPress blog, with a sidebar of articles that displays the excerpt of that article on hover. I use jQuery to get the element height (to avoid jQuery's common jumping issue with slideDown) then hide the element with this code:
function articleHeight() {
$(".article").each(function() {
$(this).css("height", $(this).height());
});
}
articleHeight();
and then the following code to TRY and get the new height upon window resize:
$(window).resize(function() {
articleHeight();
});
The first part works great, but it won't recalculate the size, causing it to either provide too much room, or cut the excerpt off upon resize.
I realize that since the element is already hidden, it may not be able to get the new height, but I tested this by un-hiding the element in the jQuery, and it still won't recalculate.
Any idea on this would be extremely helpful. Thanks so much.