/** * ========================================================================== * * javascript for AZLINK. * スタッフ紹介用 * * ========================================================================== */ $(function() { $('#staffList li:odd').each(function(){ $(this).addClass('mL20'); var setHeight; setHeight = $(this).prev().height() >= $(this).height() ? $(this).prev().height() : $(this).height(); $(this).height(setHeight); $(this).prev().height(setHeight); }); });