// active click through on flux comment count $j(function(){ $j('#posts .post .post_footer .commentCount .txtLabel').live('mouseover', function(){ $j(this).css({ 'text-decoration':'underline', 'cursor' : 'pointer' }); }); $j('#posts .post .post_footer .commentCount .txtLabel').live('mouseout', function(){ $j(this).css({ 'text-decoration':'none', 'cursor' : 'auto' }); }); $j('#posts .post .post_footer .commentCount .txtLabel').live('click', function(){ //var permalink = $j(this).closest('.post_footer').find('.permalink a'); var permalink = $j(this).closest('.post').find('.postBeginMetaData a'); window.location.href = permalink.attr('href') + '#comments'; }); });