これがコメント付きの JSfiddle です。CSSを変更するjqueryを使用して、divの高さをアニメーション化しようとしています。ただし、このプロジェクトの動的な性質により、高さは不明であり、変数で検出されます。
$('span').hide();
$('.span3').click(function() {
var pollheight = $(this).find('span').height().toString(); //Trying to increase the DIV += this height (actually trying to toggle it but i'll hit that bridge later.
//$(this).find('span').append(pollheight);
$(this).animate({height: '+=80'},1000); //Trying to replace +=80 with a variable
$(this).find('span').toggle(1000);
});