Realtime Post Counter On Top Right Corner
/ Display a replies counter overlay in the top right corner /$(function(){ $('head').append('<style>#thread_stats_posts_ovl { '+ 'position:fixed;top:35px;right:35px;'+ 'font:36px sans-serif;opacity:0.5;color:#800020;}</style>'); $('body').append('<div id="thread_stats_posts_ovl"/>'); function copyStats() { $('#thread_stats_posts_ovl'). text($('#thread_stats_posts').text());} $(document).on('new_post',copyStats); copyStats();});